Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asn1c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
asn1c
Commits
c4676a80
Commit
c4676a80
authored
20 years ago
by
Lev Walkin
Browse files
Options
Downloads
Patches
Plain Diff
der_encode_to_buffer()
parent
b54577ae
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog
+1
-0
1 addition, 0 deletions
ChangeLog
skeletons/der_encoder.c
+44
-0
44 additions, 0 deletions
skeletons/der_encoder.c
skeletons/der_encoder.h
+8
-0
8 additions, 0 deletions
skeletons/der_encoder.h
with
53 additions
and
0 deletions
ChangeLog
+
1
−
0
View file @
c4676a80
...
...
@@ -15,6 +15,7 @@
* ber_dec_rval_t renamed into asn_dec_rval_t: more generality.
* Removed order dependency in DEFAULT references to ENUMERATED
identifiers (./tests/68-*-OK.asn1).
* Implemented der_encode_to_buffer() procedure.
0.9.7.1: 2004-Oct-12
...
...
This diff is collapsed.
Click to expand it.
skeletons/der_encoder.c
+
44
−
0
View file @
c4676a80
...
...
@@ -28,6 +28,50 @@ der_encode(asn_TYPE_descriptor_t *type_descriptor, void *struct_ptr,
consume_bytes
,
app_key
);
}
/*
* Argument type and callback necessary for der_encode_to_buffer().
*/
typedef
struct
enc_to_buf_arg
{
void
*
buffer
;
size_t
left
;
}
enc_to_buf_arg
;
static
int
encode_to_buffer_cb
(
const
void
*
buffer
,
size_t
size
,
void
*
key
)
{
enc_to_buf_arg
*
arg
=
key
;
if
(
arg
->
left
<
size
)
return
-
1
;
/* Data exceeds the available buffer size */
memcpy
(
arg
->
buffer
,
buffer
,
size
);
arg
->
buffer
=
((
char
*
)
arg
->
buffer
)
+
size
;
arg
->
left
-=
size
;
return
0
;
}
/*
* A variant of the der_encode() which encodes the data into the provided buffer
*/
asn_enc_rval_t
der_encode_to_buffer
(
asn_TYPE_descriptor_t
*
type_descriptor
,
void
*
struct_ptr
,
void
*
buffer
,
size_t
*
buffer_size
)
{
enc_to_buf_arg
arg
;
asn_enc_rval_t
ec
;
arg
.
buffer
=
buffer
;
arg
.
left
=
*
buffer_size
;
ec
=
type_descriptor
->
der_encoder
(
type_descriptor
,
struct_ptr
,
/* Pointer to the destination structure */
0
,
0
,
encode_to_buffer_cb
,
&
arg
);
if
(
ec
.
encoded
!=
-
1
)
{
assert
(
ec
.
encoded
==
(
*
buffer_size
-
arg
.
left
));
/* Return the encoded contents size */
*
buffer_size
=
ec
.
encoded
;
}
return
ec
;
}
/*
* Write out leading TL[v] sequence according to the type definition.
*/
...
...
This diff is collapsed.
Click to expand it.
skeletons/der_encoder.h
+
8
−
0
View file @
c4676a80
...
...
@@ -18,6 +18,14 @@ asn_enc_rval_t der_encode(struct asn_TYPE_descriptor_s *type_descriptor,
void
*
app_key
/* Arbitrary callback argument */
);
/* A variant of der_encode() which encodes data into the pre-allocated buffer */
asn_enc_rval_t
der_encode_to_buffer
(
struct
asn_TYPE_descriptor_s
*
type_descriptor
,
void
*
struct_ptr
,
/* Structure to be encoded */
void
*
buffer
,
/* Pre-allocated buffer */
size_t
*
buffer_size
/* Initial buffer size (max) */
);
/*
* Type of the generic DER encoder.
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment