Lines Matching refs:olen
77 unsigned char *out, size_t olen);
290 unsigned char *out, size_t olen)
324 if (olen > chunk) {
331 if (olen <= chunk) {
335 memcpy(out, Ai, olen);
338 if (!EVP_MAC_final(ctx, out, NULL, olen))
343 olen -= chunk;
376 unsigned char *out, size_t olen)
387 seed, seed_len, out, olen))
390 if ((tmp = OPENSSL_malloc(olen)) == NULL) {
396 seed, seed_len, tmp, olen)) {
397 OPENSSL_clear_free(tmp, olen);
400 for (i = 0; i < olen; i++)
402 OPENSSL_clear_free(tmp, olen);
407 if (!tls1_prf_P_hash(mdctx, sec, slen, seed, seed_len, out, olen))