asn1: Fix extra.c printer functions
This commit is contained in:
@@ -92,12 +92,13 @@ free_heim_any(heim_any *data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
print_heim_any(const heim_any *data)
|
print_heim_any(const heim_any *data, int flags)
|
||||||
{
|
{
|
||||||
char *s2 = NULL;
|
char *s2 = NULL;
|
||||||
char *s = der_print_octet_string(data, 0);
|
char *s = der_print_octet_string(data, 0);
|
||||||
int r = -1;
|
int r = -1;
|
||||||
|
|
||||||
|
(void)flags;
|
||||||
if (s)
|
if (s)
|
||||||
r = rk_strasvis(&s2, s, VIS_CSTYLE|VIS_TAB|VIS_NL, "\"");
|
r = rk_strasvis(&s2, s, VIS_CSTYLE|VIS_TAB|VIS_NL, "\"");
|
||||||
free(s);
|
free(s);
|
||||||
@@ -141,12 +142,13 @@ free_HEIM_ANY(heim_any *data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
print_HEIM_ANY(const heim_any *data)
|
print_HEIM_ANY(const heim_any *data, int flags)
|
||||||
{
|
{
|
||||||
char *s2 = NULL;
|
char *s2 = NULL;
|
||||||
char *s = der_print_octet_string(data, 0);
|
char *s = der_print_octet_string(data, 0);
|
||||||
int r = -1;
|
int r = -1;
|
||||||
|
|
||||||
|
(void)flags;
|
||||||
if (s)
|
if (s)
|
||||||
r = rk_strasvis(&s2, s, VIS_CSTYLE|VIS_TAB|VIS_NL, "\"");
|
r = rk_strasvis(&s2, s, VIS_CSTYLE|VIS_TAB|VIS_NL, "\"");
|
||||||
free(s);
|
free(s);
|
||||||
@@ -190,12 +192,13 @@ free_heim_any_set(heim_any_set *data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
print_heim_any_set(const heim_any_set *data)
|
print_heim_any_set(const heim_any_set *data, int flags)
|
||||||
{
|
{
|
||||||
char *s2 = NULL;
|
char *s2 = NULL;
|
||||||
char *s = der_print_octet_string(data, 0);
|
char *s = der_print_octet_string(data, 0);
|
||||||
int r = -1;
|
int r = -1;
|
||||||
|
|
||||||
|
(void)flags;
|
||||||
if (s)
|
if (s)
|
||||||
r = rk_strasvis(&s2, s, VIS_CSTYLE|VIS_TAB|VIS_NL, "\"");
|
r = rk_strasvis(&s2, s, VIS_CSTYLE|VIS_TAB|VIS_NL, "\"");
|
||||||
free(s);
|
free(s);
|
||||||
@@ -245,12 +248,13 @@ free_HEIM_ANY_SET(heim_any_set *data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
print_HEIM_ANY_SET(const heim_any_set *data)
|
print_HEIM_ANY_SET(const heim_any_set *data, int flags)
|
||||||
{
|
{
|
||||||
char *s2 = NULL;
|
char *s2 = NULL;
|
||||||
char *s = der_print_octet_string(data, 0);
|
char *s = der_print_octet_string(data, 0);
|
||||||
int r = -1;
|
int r = -1;
|
||||||
|
|
||||||
|
(void)flags;
|
||||||
if (s)
|
if (s)
|
||||||
r = rk_strasvis(&s2, s, VIS_CSTYLE|VIS_TAB|VIS_NL, "\"");
|
r = rk_strasvis(&s2, s, VIS_CSTYLE|VIS_TAB|VIS_NL, "\"");
|
||||||
free(s);
|
free(s);
|
||||||
|
@@ -37,7 +37,7 @@
|
|||||||
int encode_heim_any(unsigned char *, size_t, const heim_any *, size_t *);
|
int encode_heim_any(unsigned char *, size_t, const heim_any *, size_t *);
|
||||||
int decode_heim_any(const unsigned char *, size_t, heim_any *, size_t *);
|
int decode_heim_any(const unsigned char *, size_t, heim_any *, size_t *);
|
||||||
void free_heim_any(heim_any *);
|
void free_heim_any(heim_any *);
|
||||||
char *print_heim_any(const heim_any *);
|
char *print_heim_any(const heim_any *, int);
|
||||||
size_t length_heim_any(const heim_any *);
|
size_t length_heim_any(const heim_any *);
|
||||||
int copy_heim_any(const heim_any *, heim_any *);
|
int copy_heim_any(const heim_any *, heim_any *);
|
||||||
|
|
||||||
@@ -46,7 +46,7 @@ int encode_heim_any_set(unsigned char *, size_t,
|
|||||||
int decode_heim_any_set(const unsigned char *, size_t,
|
int decode_heim_any_set(const unsigned char *, size_t,
|
||||||
heim_any_set *,size_t *);
|
heim_any_set *,size_t *);
|
||||||
void free_heim_any_set(heim_any_set *);
|
void free_heim_any_set(heim_any_set *);
|
||||||
char *print_heim_any_set(const heim_any_set *);
|
char *print_heim_any_set(const heim_any_set *, int);
|
||||||
size_t length_heim_any_set(const heim_any_set *);
|
size_t length_heim_any_set(const heim_any_set *);
|
||||||
int copy_heim_any_set(const heim_any_set *, heim_any_set *);
|
int copy_heim_any_set(const heim_any_set *, heim_any_set *);
|
||||||
int heim_any_cmp(const heim_any_set *, const heim_any_set *);
|
int heim_any_cmp(const heim_any_set *, const heim_any_set *);
|
||||||
@@ -54,7 +54,7 @@ int heim_any_cmp(const heim_any_set *, const heim_any_set *);
|
|||||||
int encode_HEIM_ANY(unsigned char *, size_t, const heim_any *, size_t *);
|
int encode_HEIM_ANY(unsigned char *, size_t, const heim_any *, size_t *);
|
||||||
int decode_HEIM_ANY(const unsigned char *, size_t, heim_any *, size_t *);
|
int decode_HEIM_ANY(const unsigned char *, size_t, heim_any *, size_t *);
|
||||||
void free_HEIM_ANY(heim_any *);
|
void free_HEIM_ANY(heim_any *);
|
||||||
char *print_HEIM_ANY(const heim_any *);
|
char *print_HEIM_ANY(const heim_any *, int);
|
||||||
size_t length_HEIM_ANY(const heim_any *);
|
size_t length_HEIM_ANY(const heim_any *);
|
||||||
int copy_HEIM_ANY(const heim_any *, heim_any *);
|
int copy_HEIM_ANY(const heim_any *, heim_any *);
|
||||||
|
|
||||||
@@ -63,7 +63,7 @@ int encode_HEIM_ANY_SET(unsigned char *, size_t,
|
|||||||
int decode_HEIM_ANY_SET(const unsigned char *, size_t,
|
int decode_HEIM_ANY_SET(const unsigned char *, size_t,
|
||||||
heim_any_set *,size_t *);
|
heim_any_set *,size_t *);
|
||||||
void free_HEIM_ANY_SET(heim_any_set *);
|
void free_HEIM_ANY_SET(heim_any_set *);
|
||||||
char *print_HEIM_ANY_SET(const heim_any_set *);
|
char *print_HEIM_ANY_SET(const heim_any_set *, int);
|
||||||
size_t length_HEIM_ANY_SET(const heim_any_set *);
|
size_t length_HEIM_ANY_SET(const heim_any_set *);
|
||||||
int copy_HEIM_ANY_SET(const heim_any_set *, heim_any_set *);
|
int copy_HEIM_ANY_SET(const heim_any_set *, heim_any_set *);
|
||||||
int heim_any_cmp(const heim_any_set *, const heim_any_set *);
|
int heim_any_cmp(const heim_any_set *, const heim_any_set *);
|
||||||
|
Reference in New Issue
Block a user