blob: cb784d194aa11e5004e09617cb0ddd98fc71e884 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
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#ifndef _DER_ENCODER_H_
6#define _DER_ENCODER_H_
7
Lev Walkin11c3e172004-09-24 21:00:50 +00008#include <asn_application.h>
Lev Walkinf15320b2004-06-03 03:38:44 +00009
Lev Walkin5e033762004-09-29 13:26:15 +000010struct asn_TYPE_descriptor_s; /* Forward declaration */
Lev Walkinf15320b2004-06-03 03:38:44 +000011
12/*
Lev Walkinf15320b2004-06-03 03:38:44 +000013 * The DER encoder of any type. May be invoked by the application.
14 */
Lev Walkin5e033762004-09-29 13:26:15 +000015asn_enc_rval_t der_encode(struct asn_TYPE_descriptor_s *type_descriptor,
Lev Walkinf15320b2004-06-03 03:38:44 +000016 void *struct_ptr, /* Structure to be encoded */
17 asn_app_consume_bytes_f *consume_bytes_cb,
18 void *app_key /* Arbitrary callback argument */
19 );
20
Lev Walkinc4676a82004-11-16 09:46:00 +000021/* A variant of der_encode() which encodes data into the pre-allocated buffer */
22asn_enc_rval_t der_encode_to_buffer(
23 struct asn_TYPE_descriptor_s *type_descriptor,
24 void *struct_ptr, /* Structure to be encoded */
25 void *buffer, /* Pre-allocated buffer */
26 size_t *buffer_size /* Initial buffer size (max) */
27 );
28
Lev Walkinf15320b2004-06-03 03:38:44 +000029/*
30 * Type of the generic DER encoder.
31 */
Lev Walkina9cc46e2004-09-22 16:06:28 +000032typedef asn_enc_rval_t (der_type_encoder_f)(
Lev Walkin5e033762004-09-29 13:26:15 +000033 struct asn_TYPE_descriptor_s *type_descriptor,
Lev Walkinf15320b2004-06-03 03:38:44 +000034 void *struct_ptr, /* Structure to be encoded */
35 int tag_mode, /* {-1,0,1}: IMPLICIT, no, EXPLICIT */
36 ber_tlv_tag_t tag,
37 asn_app_consume_bytes_f *consume_bytes_cb, /* Callback */
38 void *app_key /* Arbitrary callback argument */
39 );
40
41
42/*******************************
43 * INTERNALLY USEFUL FUNCTIONS *
44 *******************************/
45
46/*
47 * Write out leading TL[v] sequence according to the type definition.
48 */
49ssize_t der_write_tags(
Lev Walkin5e033762004-09-29 13:26:15 +000050 struct asn_TYPE_descriptor_s *type_descriptor,
Lev Walkinf15320b2004-06-03 03:38:44 +000051 size_t struct_length,
52 int tag_mode, /* {-1,0,1}: IMPLICIT, no, EXPLICIT */
Lev Walkin8e8078a2004-09-26 13:10:40 +000053 int last_tag_form, /* {0,!0}: prim, constructed */
Lev Walkinf15320b2004-06-03 03:38:44 +000054 ber_tlv_tag_t tag,
55 asn_app_consume_bytes_f *consume_bytes_cb,
56 void *app_key
57 );
58
59#endif /* _DER_ENCODER_H_ */