aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/asn1/credssp/CredSSP.asn
blob: 39731559dc63c4f21aa73d0873b69d43517ba54a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
-- Derived from http://download.microsoft.com/download/9/5/E/95EF66AF-9026-4BB0-A41D-A4F81802D92C/%5BMS-CSSP%5D.pdf 

CredSSP DEFINITIONS EXPLICIT TAGS ::=

BEGIN

NegoData ::= SEQUENCE OF SEQUENCE {
	 negoToken    [0] OCTET STRING
}

TSPasswordCreds ::=  SEQUENCE {
		domainName	[0] OCTET STRING,
		userName 	[1] OCTET STRING,
		password 	[2] OCTET STRING
}

TSCspDataDetail ::= SEQUENCE {
		keySpec		[0] INTEGER,
		cardName 	[1] OCTET STRING OPTIONAL,
		readerName 	[2] OCTET STRING OPTIONAL,
		containerName 	[3] OCTET STRING OPTIONAL,
		cspName 	[4] OCTET STRING OPTIONAL
}

TSSmartCardCreds ::=  SEQUENCE {
		 pin		[0] OCTET STRING,
		 cspData 	[1] TSCspDataDetail,
		 userHint 	[2] OCTET STRING OPTIONAL,
		 domainHint 	[3] OCTET STRING OPTIONAL
}

TSCredentials ::= SEQUENCE {
	      credType 	   [0] INTEGER,
	      credentials  [1] OCTET STRING
}

TSRequest ::= SEQUENCE {
	version	       [0] INTEGER,
	negoTokens     [1] NegoData OPTIONAL,
	authInfo       [2] OCTET STRING OPTIONAL,
	pubKeyAuth     [3] OCTET STRING OPTIONAL
}

END