blob: a6cc761922fdcab7724caf32052e24403b4e9044 [file] [log] [blame]
Harald Welte92c45f32010-06-12 18:59:38 +02001/*-
2 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#include <asn_internal.h>
6#include <ISO646String.h>
7
8/*
9 * ISO646String basic type description.
10 */
Harald Welte41b85d52015-08-31 08:56:53 +020011static const ber_tlv_tag_t asn_DEF_ISO646String_tags[] = {
Harald Welte92c45f32010-06-12 18:59:38 +020012 (ASN_TAG_CLASS_UNIVERSAL | (26 << 2)), /* [UNIVERSAL 26] IMPLICIT ...*/
13 (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)) /* ... OCTET STRING */
14};
Harald Welteec0e2172010-07-20 00:03:44 +020015static asn_per_constraints_t asn_DEF_ISO646String_constraints = {
16 { APC_CONSTRAINED, 7, 7, 0x20, 0x7e }, /* Value */
17 { APC_SEMI_CONSTRAINED, -1, -1, 0, 0 }, /* Size */
18 0, 0
19};
Harald Welte92c45f32010-06-12 18:59:38 +020020asn_TYPE_descriptor_t asn_DEF_ISO646String = {
21 "ISO646String",
22 "ISO646String",
23 OCTET_STRING_free,
24 OCTET_STRING_print_utf8, /* ASCII subset */
25 VisibleString_constraint,
26 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
27 OCTET_STRING_encode_der,
28 OCTET_STRING_decode_xer_utf8,
29 OCTET_STRING_encode_xer_utf8,
Harald Welteec0e2172010-07-20 00:03:44 +020030 OCTET_STRING_decode_uper,
31 OCTET_STRING_encode_uper,
Harald Welte41b85d52015-08-31 08:56:53 +020032 OCTET_STRING_decode_aper,
33 OCTET_STRING_encode_aper,
Harald Welte92c45f32010-06-12 18:59:38 +020034 0, /* Use generic outmost tag fetcher */
35 asn_DEF_ISO646String_tags,
36 sizeof(asn_DEF_ISO646String_tags)
37 / sizeof(asn_DEF_ISO646String_tags[0]) - 1,
38 asn_DEF_ISO646String_tags,
39 sizeof(asn_DEF_ISO646String_tags)
40 / sizeof(asn_DEF_ISO646String_tags[0]),
Harald Welteec0e2172010-07-20 00:03:44 +020041 &asn_DEF_ISO646String_constraints,
Harald Welte92c45f32010-06-12 18:59:38 +020042 0, 0, /* No members */
43 0 /* No specifics */
44};