Searched defs:in_buf (Results 1 - 9 of 9) sorted by relevance

/osnet-11/usr/src/lib/rpcsec_gss/
H A Drpcsec_gss_misc.c124 gss_buffer_desc in_buf, out_buf; local
157 * Data to be wrapped goes in in_buf. If privacy is used,
158 * out_buf will have wrapped data (in_buf will no longer be
160 * which will follow the data in in_buf.
162 in_buf.length = xdr_getpos(&temp_xdrs);
163 in_buf.value = temp_xdrs.x_base;
167 if (gss_seal(&minor, context, TRUE, qop, &in_buf,
170 in_buf.length = 0; /* in_buf not needed */
175 if (gss_sign(&minor, context, qop, &in_buf,
217 gss_buffer_desc in_buf, out_buf; local
[all...]
H A Drpcsec_gss.c508 gss_buffer_desc in_buf, out_buf; local
522 in_buf.length = xdr_getpos(xdrs);
523 in_buf.value = buf;
524 if ((major = gss_sign(&minor, ap->context, ap->qop, &in_buf,
H A Dsvc_rpcsec_gss.c1155 gss_buffer_desc in_buf, out_buf; local
1159 in_buf.length = sizeof (num);
1160 in_buf.value = (char *)&num_net;
1161 if (gss_sign(&minor, cl->context, cl->qop, &in_buf,
/osnet-11/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftBlowfishCrypt.c143 CK_BYTE *in_buf = NULL; local
177 in_buf = pData;
248 in_buf = pEncrypted;
250 in_buf = pData;
268 (char *)in_buf, out_len, &out);
321 CK_BYTE *in_buf = NULL; local
355 in_buf = pEncrypted;
420 in_buf = pData;
422 in_buf = pEncrypted;
437 (char *)in_buf, out_le
[all...]
H A DsoftAESCrypt.c185 CK_BYTE *in_buf = NULL; local
252 in_buf = pData;
323 in_buf = pEncrypted;
325 in_buf = pData;
354 tmp_inbuf = &in_buf[i];
379 (char *)in_buf, out_len, &out);
417 (char *)in_buf, out_len, &out);
443 (void) memcpy(tmpblock, in_buf + out_len,
557 CK_BYTE *in_buf = NULL; local
610 in_buf
[all...]
H A DsoftDESCrypt.c178 CK_BYTE *in_buf = NULL; local
246 in_buf = pData;
316 in_buf = pEncrypted;
318 in_buf = pData;
332 (char *)in_buf, out_len, &out);
354 (void) memcpy(tmpblock, in_buf + out_len,
444 CK_BYTE *in_buf = NULL; local
502 in_buf = pEncrypted;
588 in_buf = pData;
590 in_buf
[all...]
/osnet-11/usr/src/lib/libsasl/lib/
H A Dcanonusr.c385 char *in_buf, *userin; local
393 in_buf = utils->malloc((ulen + 2) * sizeof(char));
395 in_buf = sasl_ALLOC((ulen + 2) * sizeof(char));
397 if(!in_buf) return SASL_NOMEM;
399 userin = in_buf;
412 utils->free(in_buf);
414 sasl_FREE(in_buf);
447 utils->free(in_buf);
449 sasl_FREE(in_buf);
/osnet-11/usr/src/lib/pkcs11/pkcs11_kms/common/
H A DkmsAESCrypt.c205 CK_BYTE *in_buf = NULL; local
272 in_buf = pData;
343 in_buf = pEncrypted;
345 in_buf = pData;
370 (char *)in_buf, out_len, &out);
392 (void) memcpy(tmpblock, in_buf + out_len,
487 CK_BYTE *in_buf = NULL; local
540 in_buf = pEncrypted;
627 in_buf = pData;
629 in_buf
[all...]
/osnet-11/usr/src/lib/auditd_plugins/remote/
H A Dtransport.c175 gss_buffer_desc out_buf, in_buf; local
193 if (recv_token(sockfd, &in_buf) < 0) {
203 if (out_buf.length != in_buf.length ||
204 memcmp(out_buf.value, in_buf.value, out_buf.length) != 0) {
207 (char *)out_buf.value, in_buf.length,
208 (char *)in_buf.value));
209 free(in_buf.value);
218 ver_str_concat_sz = out_buf.length + in_buf.length + 1;
224 free(in_buf.value);
228 (void) memcpy(ver_str_concat + out_buf.length, in_buf
722 gss_buffer_desc in_buf, out_buf; local
947 gss_buffer_desc in_buf = GSS_C_EMPTY_BUFFER; local
[all...]

Completed in 56 milliseconds