blob: 76ebb8eae6b4dc7fe9e2e16123d6055b47dc87eb [file] [log] [blame]
Harry Trana1b2b292019-10-28 11:07:23 -04001/*****************************************************************************
2# *
3# Copyright 2019 AT&T Intellectual Property *
4# *
5# Licensed under the Apache License, Version 2.0 (the "License"); *
6# you may not use this file except in compliance with the License. *
7# You may obtain a copy of the License at *
8# *
9# http://www.apache.org/licenses/LICENSE-2.0 *
10# *
11# Unless required by applicable law or agreed to in writing, software *
12# distributed under the License is distributed on an "AS IS" BASIS, *
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
14# See the License for the specific language governing permissions and *
15# limitations under the License. *
16# *
17******************************************************************************/
18
19/*
20 * Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
21 * From ASN.1 module "X2AP-IEs"
22 * found in "../../asnFiles/X2AP-IEs.asn"
23 * `asn1c -fcompound-names -fincludes-quoted -fno-include-deps -findirect-choice -gen-PER -no-gen-OER -D.`
24 */
25
26#include "SeNBSecurityKey.h"
27
28int
29SeNBSecurityKey_constraint(const asn_TYPE_descriptor_t *td, const void *sptr,
30 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
31 const BIT_STRING_t *st = (const BIT_STRING_t *)sptr;
32 size_t size;
33
34 if(!sptr) {
35 ASN__CTFAIL(app_key, td, sptr,
36 "%s: value not given (%s:%d)",
37 td->name, __FILE__, __LINE__);
38 return -1;
39 }
40
41 if(st->size > 0) {
42 /* Size in bits */
43 size = 8 * st->size - (st->bits_unused & 0x07);
44 } else {
45 size = 0;
46 }
47
48 if((size == 256)) {
49 /* Constraint check succeeded */
50 return 0;
51 } else {
52 ASN__CTFAIL(app_key, td, sptr,
53 "%s: constraint failed (%s:%d)",
54 td->name, __FILE__, __LINE__);
55 return -1;
56 }
57}
58
59/*
60 * This type is implemented using BIT_STRING,
61 * so here we adjust the DEF accordingly.
62 */
63asn_per_constraints_t asn_PER_type_SeNBSecurityKey_constr_1 CC_NOTUSED = {
64 { APC_UNCONSTRAINED, -1, -1, 0, 0 },
65 { APC_CONSTRAINED, 0, 0, 256, 256 } /* (SIZE(256..256)) */,
66 0, 0 /* No PER value map */
67};
68static const ber_tlv_tag_t asn_DEF_SeNBSecurityKey_tags_1[] = {
69 (ASN_TAG_CLASS_UNIVERSAL | (3 << 2))
70};
71asn_TYPE_descriptor_t asn_DEF_SeNBSecurityKey = {
72 "SeNBSecurityKey",
73 "SeNBSecurityKey",
74 &asn_OP_BIT_STRING,
75 asn_DEF_SeNBSecurityKey_tags_1,
76 sizeof(asn_DEF_SeNBSecurityKey_tags_1)
77 /sizeof(asn_DEF_SeNBSecurityKey_tags_1[0]), /* 1 */
78 asn_DEF_SeNBSecurityKey_tags_1, /* Same as above */
79 sizeof(asn_DEF_SeNBSecurityKey_tags_1)
80 /sizeof(asn_DEF_SeNBSecurityKey_tags_1[0]), /* 1 */
81 { 0, &asn_PER_type_SeNBSecurityKey_constr_1, SeNBSecurityKey_constraint },
82 0, 0, /* No members */
83 &asn_SPC_BIT_STRING_specs /* Additional specs */
84};
85