blob: a67cef94b5712690d009c54e295a0f087cd134d4 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
2 * Copyright (c) 2003 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#ifndef _OCTET_STRING_H_
6#define _OCTET_STRING_H_
7
8#include <constr_TYPE.h>
9
10typedef struct OCTET_STRING {
11 uint8_t *buf; /* Buffer with consecutive OCTET_STRING bits */
12 int size; /* Size of the buffer */
13
14 ber_dec_ctx_t _ber_dec_ctx; /* Parsing across buffer boundaries */
15} OCTET_STRING_t;
16
17extern asn1_TYPE_descriptor_t asn1_DEF_OCTET_STRING;
18
Lev Walkina9cc46e2004-09-22 16:06:28 +000019asn_struct_free_f OCTET_STRING_free;
Lev Walkinf15320b2004-06-03 03:38:44 +000020asn_struct_print_f OCTET_STRING_print;
21asn_struct_print_f OCTET_STRING_print_ascii;
Lev Walkina9cc46e2004-09-22 16:06:28 +000022ber_type_decoder_f OCTET_STRING_decode_ber;
23der_type_encoder_f OCTET_STRING_encode_der;
24xer_type_encoder_f OCTET_STRING_encode_xer;
25xer_type_encoder_f OCTET_STRING_encode_xer_ascii;
Lev Walkinf15320b2004-06-03 03:38:44 +000026
27/***********************************
28 * Some handy conversion routines. *
29 ***********************************/
30
31/*
32 * This function clears the previous value of the OCTET STRING (if any)
Lev Walkina737f3b2004-09-02 12:11:47 +000033 * and then allocates a new memory and returns a pointer to it.
34 * If size = -1, the size of the original string will be determined
Lev Walkinf15320b2004-06-03 03:38:44 +000035 * using strlen(str).
36 * If str equals to NULL, the function will silently clear the
37 * current contents of the OCTET STRING.
38 * Returns 0 if it was possible to perform operation, -1 otherwise.
39 */
40int OCTET_STRING_fromBuf(OCTET_STRING_t *s, const char *str, int size);
41
42/*
43 * Allocate and fill the new OCTET STRING and return a pointer to the newly
44 * allocated object. NULL is permitted in str: the function will just allocate
45 * empty OCTET STRING.
46 */
47OCTET_STRING_t *OCTET_STRING_new_fromBuf(const char *str, int size);
48
49/* Handy conversion from the C string into the OCTET STRING. */
50#define OCTET_STRING_fromString(s, str) OCTET_STRING_fromBuf(s, str, -1);
Lev Walkinf15320b2004-06-03 03:38:44 +000051
52#endif /* _OCTET_STRING_H_ */