1<!doctype chapter PUBLIC "-//Stork//DTD chapter//EN">
2<!--
3 ``Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6
7     http://www.apache.org/licenses/LICENSE-2.0
8
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14
15 The Initial Developer of the Original Code is Ericsson Utvecklings AB.
16 Portions created by Ericsson are Copyright 1999, Ericsson Utvecklings
17 AB. All Rights Reserved.''
18
19     $Id$
20-->
21<chapter>
22  <header>
23    <title>ASN1 Release Notes</title>
24    <prepared>Kenneth Lundin</prepared>
25    <responsible>Kenneth Lundin</responsible>
26    <docno></docno>
27    <approved>Kenneth Lundin</approved>
28    <checked>Kenneth Lundin</checked>
29    <date>97-10-07</date>
30    <rev>A</rev>
31    <file>notes_latest.sgml</file>
32  </header>
33
34  <p>This document describes the changes made to the asn1 application.
35
36  <section>
37    <title>ASN1 0.8.1</title>
38    <p>This is the first release of the ASN1 application. This version is released
39      for beta-testing. Some functionality will be added until the 1.0 version is
40      released. A list of missing features and restrictions can be found in the
41      chapter below.
42
43    <section>
44      <title>Missing features and other restrictions</title>
45      <list>
46	<item>
47	  <p>The encoding rules BER and PER (aligned) is supported. <em>PER (unaligned)
48	      IS NOT SUPPORTED</em>.
49	<item>
50	  <p>NOT SUPPORTED types <c>ANY</c> and <c>ANY DEFINED BY</c>
51	    (is not in the standard any more).
52	<item>
53	  <p>NOT SUPPORTED types <c>EXTERNAL</c> and <c>EMBEDDED-PDV</c>.
54	<item>
55	  <p>NOT SUPPORTED type <c>REAL</c> (planned to  be implemented).
56	<item>
57	  <p>The code generation support for value definitions in the ASN.1 notation is very limited
58	    (planned to be enhanced).
59	<item>
60	  <p>The support for constraints is limited to:
61	  <list>
62	    <item><p>
63		SizeConstraint	SIZE(X)
64	    <item><p>
65		SingleValue	(1)
66	    <item><p>
67		ValueRange	(X..Y)
68	    <item><p>
69		PermittedAlpabet FROM (but not for BMPString and UniversalString when generating PER).
70	  </list>
71	  <p>Complex expressions in constraints is not supported (planned to be extended).
72	<item>
73	  <p>The current version of the compiler has very limited error checking:
74	    <list>
75	    <item><p>Stops at first syntax error.
76	    <item><p>Does not stop when a reference to an undefined type is found ,
77		but prints an error message. Compilation of the generated
78		Erlang module will then fail.
79	    <item><p>A whole number of other semantical controls is currently missing. This
80		means that the compiler will give little or bad help to detect what's wrong
81		with an ASN.1 specification, but will mostly work very well when the
82		ASN.1 specification is correct.
83	  </list>
84	<item>
85	  <p>The maximum INTEGER supported in this version is a signed 64 bit integer. This
86	    limitation is probably quite reasonable. (Planned to be extended).
87	<item>
88	  <p>Only AUTOMATIC TAGS supported for PER.
89	<item>
90	  <p>Only EXPLICIT and IMPLICIT TAGS supported for BER.
91	<item>
92	  <p>The compiler supports decoding of BER-data with indefinite length but it is
93	    not possible to produce data with indefinite length with the encoder.
94      </list>
95    </section>
96
97  </section>
98</chapter>
99
100
101
102