~ubuntu-branches/ubuntu/trusty/erlang/trusty

« back to all changes in this revision

Viewing changes to lib/asn1/test/asn1_SUITE_data/tcapsystem/MAP-ST-DataTypes.asn

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum
  • Date: 2011-05-05 15:48:43 UTC
  • mfrom: (3.5.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110505154843-0om6ekzg6m7ugj27
Tags: 1:14.b.2-dfsg-3ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Drop libwxgtk2.8-dev build dependency. Wx isn't in main, and not
    supposed to.
  - Drop erlang-wx binary.
  - Drop erlang-wx dependency from -megaco, -common-test, and -reltool, they
    do not really need wx. Also drop it from -debugger; the GUI needs wx,
    but it apparently has CLI bits as well, and is also needed by -megaco,
    so let's keep the package for now.
  - debian/patches/series: Do what I meant, and enable build-options.patch
    instead.
* Additional changes:
  - Drop erlang-wx from -et
* Dropped Changes:
  - patches/pcre-crash.patch: CVE-2008-2371: outer level option with
    alternatives caused crash. (Applied Upstream)
  - fix for ssl certificate verification in newSSL: 
    ssl_cacertfile_fix.patch (Applied Upstream)
  - debian/patches/series: Enable native.patch again, to get stripped beam
    files and reduce the package size again. (build-options is what
    actually accomplished this)
  - Remove build-options.patch on advice from upstream and because it caused
    odd build failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
MAP-ST-DataTypes {
 
2
   itu-t identified-organization (4) etsi (0) mobileDomain (0)
 
3
   gsm-Network (1) modules (3) map-ST-DataTypes (27) version9 (9)}
 
4
 
 
5
DEFINITIONS
 
6
IMPLICIT TAGS
 
7
::=
 
8
BEGIN
 
9
 
 
10
EXPORTS
 
11
        SecureTransportArg,
 
12
        SecureTransportRes,
 
13
        SecurityHeader,
 
14
        ProtectedPayload
 
15
;
 
16
 
 
17
IMPORTS
 
18
        IMSI
 
19
 
 
20
FROM MAP-CommonDataTypes {
 
21
   itu-t identified-organization (4) etsi (0) mobileDomain (0)
 
22
   gsm-Network (1) modules (3) map-CommonDataTypes (18) version9 (9)}
 
23
;
 
24
 
 
25
SecureTransportArg ::= SEQUENCE {
 
26
        securityHeader          SecurityHeader,
 
27
        protectedPayload                ProtectedPayload        OPTIONAL
 
28
        }
 
29
        -- The protectedPayload carries the result of applying the security function 
 
30
        -- defined in 3GPP TS 33.200 to the encoding of the argument of the securely
 
31
        -- transported operation
 
32
 
 
33
SecureTransportRes ::= SEQUENCE {
 
34
        securityHeader          SecurityHeader,
 
35
        protectedPayload                ProtectedPayload        OPTIONAL
 
36
        }
 
37
        -- The protectedPayload carries the result of applying the security function 
 
38
        -- defined in 3GPP TS 33.200 to the encoding of the result of the securely
 
39
        -- transported operation
 
40
 
 
41
SecurityHeader ::= SEQUENCE {
 
42
        securityParametersIndex SecurityParametersIndex,
 
43
        originalComponentIdentifier     OriginalComponentIdentifier,
 
44
        initialisationVector    InitialisationVector    OPTIONAL,
 
45
        ...}
 
46
 
 
47
ProtectedPayload ::= OCTET STRING(SIZE(1.. 3438))
 
48
        -- In protection mode 0 (noProtection) the ProtectedPayload carries the transfer
 
49
                -- syntax value of the component parameter identified by the
 
50
                -- originalComponentIdentifier.
 
51
        -- In protection mode 1 (integrityAuthenticity) the protectedPayload carries 
 
52
                --  the transfer syntax value of the component
 
53
                -- parameter identified by the originalComponentIdentifier, followed by
 
54
                -- the 32 bit integrity check value.
 
55
                -- The integrity check value is the result of applying the hash algorithm
 
56
                -- to the concatenation of the transfer syntax value of the SecurityHeader,
 
57
                -- and the transfer syntax value of the component parameter. 
 
58
        -- In protection mode 2 (confidentialityIntegrityAuthenticity) the protected
 
59
                -- payload carries the encrypted transfer syntax
 
60
                -- value of the component parameter identified by the
 
61
                -- originalComponentIdentifier, followed by the 32 bit integrity check value.
 
62
                -- The integrity check value is the result of applying the hash algorithm
 
63
                -- to the concatenation of the transfer syntax value of the SecurityHeader,
 
64
                -- and the encrypted transfer syntax value of the component parameter. 
 
65
        -- See 33.200.
 
66
        -- The length of the protectedPayload is adjusted according to the capabilities of
 
67
        -- the lower protocol layers
 
68
 
 
69
SecurityParametersIndex ::= OCTET STRING (SIZE(4))
 
70
 
 
71
InitialisationVector ::= OCTET STRING (SIZE(14)) 
 
72
        -- the internal structure is defined as follows:
 
73
        -- Octets 1 to 4 : TVP. The TVP is a 32 bit time stamp. Its value is binary coded
 
74
        --                        and indicates the number of intervals of 100 milliseconds
 
75
        --                        elapsed since 1st January 2002, 0:00:00 UTC
 
76
        -- Octets 5 to 10: NE-Id. The NE-Id uniquely identifies the sending network entity
 
77
        --                        within the PLMN. It is the entity's E.164 number without CC and
 
78
        --                        NDC. It is TBCD-coded, padded with zeros.
 
79
        -- Octets 11 to 14: PROP. This 32 bit value is used to make the
 
80
        --                        InitialisationVector unique within the same TVP period.
 
81
        --                        The content is not standardized.
 
82
 
 
83
 
 
84
OriginalComponentIdentifier ::= CHOICE {
 
85
        operationCode   [0] OperationCode,
 
86
        errorCode               [1] ErrorCode,
 
87
        userInfo                [2] NULL}
 
88
 
 
89
OperationCode ::= CHOICE {
 
90
        localValue      INTEGER,
 
91
        globalValue     OBJECT IDENTIFIER}
 
92
 
 
93
ErrorCode ::= CHOICE {
 
94
        localValue      INTEGER,
 
95
        globalValue     OBJECT IDENTIFIER}
 
96
 
 
97
END
 
98