Searched refs:buf_out (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.2-release/crypto/openssl/crypto/asn1/
H A Da_sign.c135 unsigned char *p, *buf_in = NULL, *buf_out = NULL; local
176 buf_out = (unsigned char *)OPENSSL_malloc((unsigned int)outl);
177 if ((buf_in == NULL) || (buf_out == NULL)) {
187 || !EVP_SignFinal(&ctx, (unsigned char *)buf_out,
195 signature->data = buf_out;
196 buf_out = NULL;
210 if (buf_out != NULL) {
211 OPENSSL_cleanse((char *)buf_out, outll);
212 OPENSSL_free(buf_out);
238 unsigned char *buf_in = NULL, *buf_out local
[all...]
/freebsd-10.2-release/crypto/openssl/apps/
H A Dpkeyutl.c101 unsigned char *buf_in = NULL, *buf_out = NULL, *sig = NULL; local
310 buf_out = OPENSSL_malloc(buf_outlen);
311 if (!buf_out)
315 buf_out, (size_t *)&buf_outlen,
327 if (!ASN1_parse_dump(out, buf_out, buf_outlen, 1, -1))
330 BIO_dump(out, (char *)buf_out, buf_outlen);
332 BIO_write(out, buf_out, buf_outlen);
341 if (buf_out)
342 OPENSSL_free(buf_out);
/freebsd-10.2-release/sys/mips/atheros/
H A Dar71xx_spi.c170 uint8_t *buf_in, *buf_out; local
186 buf_out = (uint8_t *)cmd->tx_cmd;
189 buf_in[i] = ar71xx_spi_txrx(sc, devi->cs, buf_out[i]);
194 buf_out = (uint8_t *)cmd->tx_data;
197 buf_in[i] = ar71xx_spi_txrx(sc, devi->cs, buf_out[i]);

Completed in 55 milliseconds