aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/asn1_bin_SUITE_data/P-RecordA3.asn
diff options
context:
space:
mode:
Diffstat (limited to 'lib/asn1/test/asn1_bin_SUITE_data/P-RecordA3.asn')
-rw-r--r--lib/asn1/test/asn1_bin_SUITE_data/P-RecordA3.asn40
1 files changed, 0 insertions, 40 deletions
diff --git a/lib/asn1/test/asn1_bin_SUITE_data/P-RecordA3.asn b/lib/asn1/test/asn1_bin_SUITE_data/P-RecordA3.asn
deleted file mode 100644
index 74023140e4..0000000000
--- a/lib/asn1/test/asn1_bin_SUITE_data/P-RecordA3.asn
+++ /dev/null
@@ -1,40 +0,0 @@
-P-RecordA3 DEFINITIONS AUTOMATIC TAGS ::=
-
-BEGIN
-
-PersonnelRecord ::= [APPLICATION 0] IMPLICIT SET {
- name Name,
- title [0] VisibleString,
- number EmployeeNumber,
- dateOfHire [1] Date,
- nameOfSpouse [2] Name,
- children [3] IMPLICIT SEQUENCE (SIZE(2, ...)) OF ChildInformation OPTIONAL,
- ...
-}
-
-ChildInformation ::= SET {
- name Name,
- dateOfBirth [0] Date,
- ...,
- sex [1] IMPLICIT ENUMERATED {
- male(1),
- female(2),
- unknown(3)
- } OPTIONAL
-}
-
-Name ::= [APPLICATION 1] IMPLICIT SEQUENCE {
- givenName NameString,
- initial NameString (SIZE(1)),
- familyName NameString,
- ...
-}
-
-EmployeeNumber ::= [APPLICATION 2] IMPLICIT INTEGER (0..9999, ...)
-
-Date ::= [APPLICATION 3] IMPLICIT VisibleString (FROM("0".."9") ^ SIZE(8, ..., 9..20)) -- YYYYMMDD
-
-NameString ::= VisibleString (FROM("a".."z" | "A".."Z" | "-.") ^ SIZE(1..64, ...))
-
-
-END \ No newline at end of file