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
45
46
47
48
49
50
51
52
53
54
|
# h235.cnf
# H235-SECURITY-MESSAGES conformation file
# 2004 Tomas Kukosa
# $Id: h235.cnf,v 1.3 2004/06/04 11:28:04 sahlberg Exp $
#.EXPORTS
SIGNEDxxx
ENCRYPTEDxxx
HASHEDxxx
TimeStamp
ClearToken
CryptoToken
AuthenticationMechanism
#.OMIT_ASSIGNMENT
ECGDSASignature
PwdCertToken
KeySignedMaterial
H235CertificateSignature
ReturnSig
KeySyncMaterial
#.FIELD_RENAME
TypedCertificate/certificate certificatedata
SIGNEDxxx/signature signaturedata
CryptoToken/cryptoHashedToken/token hashedToken
CryptoToken/cryptoSignedToken/token signedToken
CryptoToken/cryptoEncryptedToken/token encryptedToken
#.END
#.FN_HDR SIGNEDxxx
proto_tree_add_item_hidden(tree, proto_h235, tvb, offset, 0, FALSE);
#.END
#.FN_HDR ENCRYPTEDxxx
proto_tree_add_item_hidden(tree, proto_h235, tvb, offset, 0, FALSE);
#.END
#.FN_HDR HASHEDxxx
proto_tree_add_item_hidden(tree, proto_h235, tvb, offset, 0, FALSE);
#.END
#.FN_HDR ClearToken
proto_tree_add_item_hidden(tree, proto_h235, tvb, offset, 0, FALSE);
#.END
#.FN_HDR CryptoToken
proto_tree_add_item_hidden(tree, proto_h235, tvb, offset, 0, FALSE);
#.END
|