HomeSort by: relevance | last modified time | path
    Searched defs:buf_out (Results 1 - 7 of 7) sorted by relevancy

  /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
a_sign.c 31 unsigned char *p, *buf_in = NULL, *buf_out = NULL; local
81 buf_out = OPENSSL_malloc(outll);
82 if (buf_in == NULL || buf_out == NULL) {
92 || !EVP_SignFinal(ctx, (unsigned char *)buf_out,
99 signature->data = buf_out;
100 buf_out = NULL;
111 OPENSSL_clear_free((char *)buf_out, outll);
145 unsigned char *buf_in = NULL, *buf_out = NULL; local
215 buf_out = OPENSSL_malloc(outll);
216 if (buf_in == NULL || buf_out == NULL)
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/asn1/
a_sign.c 32 unsigned char *p, *buf_in = NULL, *buf_out = NULL; local
81 buf_out = OPENSSL_malloc(outll);
82 if (buf_in == NULL || buf_out == NULL) {
91 || !EVP_SignFinal(ctx, (unsigned char *)buf_out,
97 ASN1_STRING_set0(signature, buf_out, outl);
98 buf_out = NULL;
107 OPENSSL_clear_free((char *)buf_out, outll);
152 unsigned char *buf_in = NULL, *buf_out = NULL; local
266 buf_out = OPENSSL_malloc(outll);
267 if (buf_in == NULL || buf_out == NULL)
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/asn1/
a_sign.c 32 unsigned char *p, *buf_in = NULL, *buf_out = NULL; local
82 buf_out = OPENSSL_malloc(outll);
83 if (buf_in == NULL || buf_out == NULL) {
93 || !EVP_SignFinal(ctx, (unsigned char *)buf_out,
100 signature->data = buf_out;
101 buf_out = NULL;
112 OPENSSL_clear_free((char *)buf_out, outll);
157 unsigned char *buf_in = NULL, *buf_out = NULL; local
275 buf_out = OPENSSL_malloc(outll);
276 if (buf_in == NULL || buf_out == NULL)
    [all...]
  /src/external/bsd/openldap/dist/include/
ldap_pvt.h 342 Sockbuf_Buf buf_out; member in struct:sb_sasl_generic_data
  /src/crypto/external/bsd/openssl.old/dist/apps/
pkeyutl.c 85 unsigned char *buf_in = NULL, *buf_out = NULL, *sig = NULL; local
327 buf_out = app_malloc(buf_outlen, "buffer output");
329 buf_out, (size_t *)&buf_outlen,
344 if (!ASN1_parse_dump(out, buf_out, buf_outlen, 1, -1))
347 BIO_dump(out, (char *)buf_out, buf_outlen);
349 BIO_write(out, buf_out, buf_outlen);
358 OPENSSL_free(buf_out);
  /src/crypto/external/bsd/openssl/dist/apps/
pkeyutl.c 113 unsigned char *buf_in = NULL, *buf_out = NULL, *sig = NULL; local
471 &buf_out, (size_t *)&buf_outlen);
481 buf_out = app_malloc(buf_outlen, "buffer output");
483 buf_out, (size_t *)&buf_outlen,
498 if (!ASN1_parse_dump(out, buf_out, buf_outlen, 1, -1))
501 BIO_dump(out, (char *)buf_out, buf_outlen);
503 BIO_write(out, buf_out, buf_outlen);
516 OPENSSL_free(buf_out);
  /src/crypto/external/apache2/openssl/dist/apps/
pkeyutl.c 159 unsigned char *buf_in = NULL, *buf_out = NULL, *sig = NULL, *secret = NULL; local
575 &buf_out, (size_t *)&buf_outlen);
588 buf_out = app_malloc(buf_outlen, "buffer output");
592 buf_out, &buf_outlen,
607 if (!ASN1_parse_dump(out, buf_out, buf_outlen, 1, -1))
610 BIO_dump(out, (char *)buf_out, buf_outlen);
612 BIO_write(out, buf_out, buf_outlen);
630 OPENSSL_free(buf_out);

Completed in 27 milliseconds