mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-02 13:09:42 -05:00
Add DER OID decoder/encoder
This commit is contained in:
parent
9fe8f72310
commit
1255666b8b
1 changed files with 15 additions and 0 deletions
|
|
@ -316,9 +316,19 @@ ber_scanf LDAP_P((
|
|||
LDAP_CONST char *fmt,
|
||||
... ));
|
||||
|
||||
LBER_F( int )
|
||||
ber_decode_oid LDAP_P((
|
||||
struct berval *in,
|
||||
struct berval *out ));
|
||||
|
||||
/*
|
||||
* in encode.c
|
||||
*/
|
||||
LBER_F( int )
|
||||
ber_encode_oid LDAP_P((
|
||||
struct berval *in,
|
||||
struct berval *out ));
|
||||
|
||||
typedef int (*BEREncodeCallback) LDAP_P((
|
||||
BerElement *ber,
|
||||
void *data ));
|
||||
|
|
@ -401,6 +411,11 @@ ber_printf LDAP_P((
|
|||
* in io.c:
|
||||
*/
|
||||
|
||||
LBER_F( ber_slen_t )
|
||||
ber_skip_data LDAP_P((
|
||||
BerElement *ber,
|
||||
ber_len_t len ));
|
||||
|
||||
LBER_F( ber_slen_t )
|
||||
ber_read LDAP_P((
|
||||
BerElement *ber,
|
||||
|
|
|
|||
Loading…
Reference in a new issue