Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asn1c
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
asn1c
Commits
958d7a80
Commit
958d7a80
authored
Aug 19, 2004
by
Lev Walkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BOOLEAN and NULL have changed their types
parent
7f7d46ac
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
19 deletions
+24
-19
skeletons/BOOLEAN.c
skeletons/BOOLEAN.c
+10
-10
skeletons/BOOLEAN.h
skeletons/BOOLEAN.h
+6
-3
skeletons/NULL.h
skeletons/NULL.h
+8
-6
No files found.
skeletons/BOOLEAN.c
View file @
958d7a80
...
...
@@ -30,16 +30,16 @@ asn1_TYPE_descriptor_t asn1_DEF_BOOLEAN = {
*/
ber_dec_rval_t
BOOLEAN_decode_ber
(
asn1_TYPE_descriptor_t
*
td
,
void
**
bool_
structur
e
,
void
*
buf_ptr
,
size_t
size
,
void
**
bool_
valu
e
,
void
*
buf_ptr
,
size_t
size
,
int
tag_mode
)
{
BOOLEAN_t
*
st
=
(
BOOLEAN_t
*
)
*
bool_
structur
e
;
BOOLEAN_t
*
st
=
(
BOOLEAN_t
*
)
*
bool_
valu
e
;
ber_dec_rval_t
rval
;
ber_dec_ctx_t
ctx
=
{
0
,
0
,
0
,
0
};
ber_tlv_len_t
length
;
ber_tlv_len_t
lidx
;
if
(
st
==
NULL
)
{
(
void
*
)
st
=
*
bool_
structur
e
=
CALLOC
(
1
,
sizeof
(
*
st
));
(
void
*
)
st
=
*
bool_
valu
e
=
CALLOC
(
1
,
sizeof
(
*
st
));
if
(
st
==
NULL
)
{
rval
.
code
=
RC_FAIL
;
rval
.
consumed
=
0
;
...
...
@@ -71,22 +71,22 @@ BOOLEAN_decode_ber(asn1_TYPE_descriptor_t *td,
/*
* Compute boolean value.
*/
for
(
st
->
value
=
0
,
lidx
=
0
;
(
lidx
<
length
)
&&
st
->
value
==
0
;
lidx
++
)
{
for
(
*
st
=
0
,
lidx
=
0
;
(
lidx
<
length
)
&&
*
st
==
0
;
lidx
++
)
{
/*
* Very simple approach: read bytes until the end or
* value is already TRUE.
* BOOLEAN is not supposed to contain meaningful data anyway.
*/
st
->
value
|=
((
uint8_t
*
)
buf_ptr
)[
lidx
];
*
st
|=
((
uint8_t
*
)
buf_ptr
)[
lidx
];
}
rval
.
code
=
RC_OK
;
rval
.
consumed
+=
length
;
ASN_DEBUG
(
"Took %ld/%ld bytes to encode %s, value=%
l
d"
,
ASN_DEBUG
(
"Took %ld/%ld bytes to encode %s, value=%d"
,
(
long
)
rval
.
consumed
,
(
long
)
length
,
td
->
name
,
(
long
)
st
->
value
);
td
->
name
,
*
st
);
return
rval
;
}
...
...
@@ -109,7 +109,7 @@ BOOLEAN_encode_der(asn1_TYPE_descriptor_t *td, void *sptr,
uint8_t
bool_value
;
ssize_t
ret
;
bool_value
=
st
->
value
?
0xff
:
0
;
/* 0xff mandated by DER */
bool_value
=
*
st
?
0xff
:
0
;
/* 0xff mandated by DER */
ret
=
cb
(
&
bool_value
,
1
,
app_key
);
if
(
ret
==
-
1
)
{
erval
.
encoded
=
-
1
;
...
...
@@ -133,7 +133,7 @@ BOOLEAN_print(asn1_TYPE_descriptor_t *td, const void *sptr, int ilevel,
(
void
)
ilevel
;
/* Unused argument */
if
(
st
)
{
if
(
st
->
value
)
if
(
*
st
)
return
cb
(
"TRUE"
,
4
,
app_key
);
else
return
cb
(
"FALSE"
,
5
,
app_key
);
...
...
skeletons/BOOLEAN.h
View file @
958d7a80
...
...
@@ -7,9 +7,12 @@
#include <constr_TYPE.h>
typedef
struct
BOOLEAN
{
int
value
;
}
BOOLEAN_t
;
/*
* The underlying integer may contain various values, but everything
* non-zero is capped to 0xff by the DER encoder. The BER decoder may
* yield non-zero values different from 1, beware.
*/
typedef
int
BOOLEAN_t
;
extern
asn1_TYPE_descriptor_t
asn1_DEF_BOOLEAN
;
...
...
skeletons/NULL.h
View file @
958d7a80
...
...
@@ -2,18 +2,20 @@
* Copyright (c) 2003 Lev Walkin <vlm@lionet.info>. All rights reserved.
* Redistribution and modifications are permitted subject to BSD license.
*/
#ifndef
_NULL_H_
#define
_NULL_H_
#ifndef
ASN_TYPE_NULL_H
#define
ASN_TYPE_NULL_H
#include <constr_TYPE.h>
typedef
struct
NULL_s
{
int
value
;
}
NULL_t
;
/*
* The value of the NULL type is meaningless: see BOOLEAN if you want to
* carry true/false semantics.
*/
typedef
int
NULL_t
;
extern
asn1_TYPE_descriptor_t
asn1_DEF_NULL
;
der_type_encoder_f
NULL_encode_der
;
asn_struct_print_f
NULL_print
;
#endif
/*
_NULL_H_
*/
#endif
/*
NULL_H
*/
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment