22#define ASN_STRING 0x16
25#define ASN_SEQUENCE 0x30
36#define ASN_FLAG_SIGNED 0x01
47#define ASN_ERROR_INVALID_VALUE_SZ -1
48#define ASN_ERROR_UNABLE_TO_ALLOCATE -2
49#define ASN_ERROR_UNABLE_TO_LOCK -3
51#define ASN_ERROR_INVALID_TYPE -4
61 MEMORY_HANDLE* h_buffer, int32_t idx, int32_t value ) SECTION_ASN;
62int32_t asn_write_string(
64 const char* source, int32_t source_sz ) SECTION_ASN;
65int32_t asn_write_blob(
66 MEMORY_HANDLE* h_buffer, int32_t idx, uint8_t* source, int32_t source_sz
68int32_t asn_write_seq_start(
69 MEMORY_HANDLE* ph_buffer, int32_t idx, int32_t* mark ) SECTION_ASN;
70int32_t asn_write_seq_end(
71 MEMORY_HANDLE* ph_buffer, int32_t idx, int32_t* mark ) SECTION_ASN;
107 uint8_t* int_buffer, uint8_t buffer_sz, uint8_t flags,
108 const uint8_t* asn_buffer, int32_t idx ) SECTION_ASN;
119 char* str_buffer, int16_t str_buffer_sz,
120 const uint8_t* asn_buffer, int32_t idx ) SECTION_ASN;
131 const uint8_t* buffer, int32_t idx, uint8_t* type_out, int32_t* sz_out
int16_t asn_read_short(const uint8_t *asn_buffer, int32_t idx) SECTION_ASN
Read short object in asn_buffer.
int16_t asn_read_meta_ptr(const uint8_t *buffer, int32_t idx, uint8_t *type_out, int32_t *sz_out) SECTION_ASN
Get metadata for the object at idx in buffer.
int16_t asn_read_string(char *str_buffer, int16_t str_buffer_sz, const uint8_t *asn_buffer, int32_t idx) SECTION_ASN
Read string object in asn_buffer into str_buffer.
int16_t asn_read_int(uint8_t *int_buffer, uint8_t buffer_sz, uint8_t flags, const uint8_t *asn_buffer, int32_t idx) SECTION_ASN
Read int object in asn_buffer into buffer.
An emulated memory handle for modern systems. Overridden on most platforms.
Definition: memory.h:20