Home
last modified time | relevance | path

Searched refs:encode_buf (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/sasl_plugins/gssapi/
H A Dgssapi.c157 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 Dcommon.c339 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 Dsaslint.h200 buffer_info_t *encode_buf; member
/illumos-gate/usr/src/lib/sasl_plugins/digestmd5/
H A Ddigestmd5.c243 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);
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);
2067 memcpy(text->encode_buf, &tmpnum, 4);
2075 *output = text->encode_buf;
[all …]