From 2e37fdd4d4b4d357d74ade580ac1ab466319b398 Mon Sep 17 00:00:00 2001 From: Kim Grasman Date: Sat, 26 Jul 2014 21:28:26 +0200 Subject: [PATCH] Tests for OCTET STRING values. --- testdata/builtin_values.asn | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/testdata/builtin_values.asn b/testdata/builtin_values.asn index d712e74..3d04894 100644 --- a/testdata/builtin_values.asn +++ b/testdata/builtin_values.asn @@ -4,8 +4,13 @@ BEGIN trueVal BOOLEAN ::= TRUE falseVal BOOLEAN ::= FALSE + -- REAL values realVal REAL ::= 3.14 intRealVal REAL ::= 6 expVal REAL ::= 2.73E12 intExpVal REAL ::= 4E9 + + -- OCTET STRING values, both binary and hex. + hexoct OCTET STRING ::= '0123ABCD'H + binoct OCTET STRING ::= '01010101'B END -- 2.34.1