Lines Matching refs:buffer
1322 int len, unsigned char *buffer)
1330 l = BN_bn2bin(in, buffer);
1334 BIO_printf(out, "0x%02X,", buffer[i]);
1336 BIO_printf(out, "0x%02X", buffer[i]);
1982 * Read whole contents of a BIO into an allocated memory buffer and return
2077 * outlen: (output) set to the length of the resulting buffer on success.
2081 * returns: a malloc'd buffer or NULL on failure.
2094 out = app_malloc(len + 1, "NPN buffer");
2102 * Every comma we skip in this way puts the input buffer another
2103 * byte ahead of the output buffer, so all stores into the output
2104 * buffer need to be decremented by the number commas skipped.