~ubuntu-branches/ubuntu/raring/freerdp/raring-proposed

« back to all changes in this revision

Viewing changes to asn1/credssp.asn1

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Jeremy Bicha, Jean-Louis Dupond, Martin Pitt
  • Date: 2012-01-31 10:02:14 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120131100214-jaok3uwvni7sqxth
Tags: 1.0.0-0git1
Upload current Debian packaging git to get this rolling for precise.

[ Jeremy Bicha ]
* New upstream release. Closes: #647498.
* Updated symbols and bumped soname
* debian/control:
  - Added new build dependencies
  - Bump Standards-Version to 3.9.2
* debian/source/format: Set to 3.0 (quilt)
* debian/rules: Turn on strict symbols checking
* debian/watch: Watch github

[ Jean-Louis Dupond ]
* debian/control: Updated homepage
* debian/copyright: Reflect upstream switch to the Apache license

[ Martin Pitt ]
* debian/libfreerdp0.symbols: Fix version number, should
  be 1.0~beta5, not 1.0-beta5.
* debian/control: Add libavcodec-dev build dependency, upstream build system
  checks for that. Thanks Jean-Louis Dupond!

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
CREDSSP DEFINITIONS ::=
3
 
 
4
 
BEGIN
5
 
 
6
 
IMPORTS NegotationToken FROM SPNEGO;
7
 
 
8
 
TSRequest ::= SEQUENCE {
9
 
        version    [0] INTEGER,
10
 
        negoTokens [1] NegoData OPTIONAL,
11
 
        authInfo   [2] OCTET STRING OPTIONAL,
12
 
        pubKeyAuth [3] OCTET STRING OPTIONAL
13
 
}
14
 
 
15
 
NegoData ::= SEQUENCE OF NegoDataItem
16
 
 
17
 
NegoDataItem ::= SEQUENCE {
18
 
        negoToken [0] OCTET STRING
19
 
}
20
 
 
21
 
TSCredentials ::= SEQUENCE {
22
 
        credType    [0] INTEGER,
23
 
        credentials [1] OCTET STRING
24
 
}
25
 
 
26
 
TSPasswordCreds ::= SEQUENCE {
27
 
        domainName  [0] OCTET STRING,
28
 
        userName    [1] OCTET STRING,
29
 
        password    [2] OCTET STRING
30
 
}
31
 
 
32
 
TSSmartCardCreds ::= SEQUENCE {
33
 
        pin        [0] OCTET STRING,
34
 
        cspData    [1] TSCspDataDetail,
35
 
        userHint   [2] OCTET STRING OPTIONAL,
36
 
        domainHint [3] OCTET STRING OPTIONAL
37
 
}
38
 
 
39
 
TSCspDataDetail ::= SEQUENCE {
40
 
        keySpec       [0] INTEGER,
41
 
        cardName      [1] OCTET STRING OPTIONAL,
42
 
        readerName    [2] OCTET STRING OPTIONAL,
43
 
        containerName [3] OCTET STRING OPTIONAL,
44
 
        cspName       [4] OCTET STRING OPTIONAL
45
 
}
46
 
 
47
 
END
48