Searched refs:encode_buf (Results 1 – 4 of 4) sorted by relevance
/illumos-gate/usr/src/lib/sasl_plugins/gssapi/ |
H A D | gssapi.c | 157 char *encode_buf; /* For encoding/decoding mem management */ member 413 ret = _plug_buf_alloc(text->utils, &(text->encode_buf), in sasl_gss_encode() 425 memcpy(text->encode_buf, &len, 4); in sasl_gss_encode() 426 memcpy(text->encode_buf + 4, output_token->value, output_token->length); in sasl_gss_encode() 433 *output = text->encode_buf; in sasl_gss_encode() 688 if (text->encode_buf) { 689 text->utils->free(text->encode_buf); 690 text->encode_buf = NULL;
|
/illumos-gate/usr/src/lib/libsasl/lib/ |
H A D | common.c | 339 result = _iovec_to_buf(conn->gctx, invec, numiov, &conn->encode_buf); in sasl_encodev() 341 result = _iovec_to_buf(invec, numiov, &conn->encode_buf); in sasl_encodev() 345 *output = conn->encode_buf->data; in sasl_encodev() 346 *outputlen = conn->encode_buf->curlen; in sasl_encodev() 535 conn->encode_buf = NULL; in _sasl_conn_init() 695 if(conn->encode_buf) { in _sasl_conn_dispose() 696 if(conn->encode_buf->data) sasl_FREE(conn->encode_buf->data); in _sasl_conn_dispose() 697 sasl_FREE(conn->encode_buf); in _sasl_conn_dispose()
|
H A D | saslint.h | 200 buffer_info_t *encode_buf; member
|
/illumos-gate/usr/src/lib/sasl_plugins/digestmd5/ |
H A D | digestmd5.c | 243 char *encode_buf, *decode_buf, *decode_once_buf; member 1757 ret = _plug_buf_alloc(text->utils, &(text->encode_buf), 1768 out = (text->encode_buf)+4; 1773 memcpy(text->encode_buf, &tmpnum, 4); 1774 memcpy(text->encode_buf + 4, inblob->data, inblob->curlen); 1777 text->utils->hmac_md5((const unsigned char *) text->encode_buf, 1801 memcpy(text->encode_buf, &tmp, 4); 1805 *output = text->encode_buf; 2036 ret = _plug_buf_alloc(text->utils, &(text->encode_buf), 2043 memcpy(text->encode_buf, &tmpnum, 4); [all …]
|