Home | History | Annotate | Download | only in tls

Lines Matching defs:outlen

574 	size_t outlen, outbuflen;
595 outbuflen = outlen = end - pos;
596 out = os_malloc(outlen >= TLS_PRE_MASTER_SECRET_LEN ?
597 outlen : TLS_PRE_MASTER_SECRET_LEN);
624 out, &outlen) < 0) {
626 "PreMasterSecret (encr_len=%u outlen=%lu)",
627 outlen);
631 if (!use_random && outlen != TLS_PRE_MASTER_SECRET_LEN) {
633 (unsigned long) outlen);
645 outlen = TLS_PRE_MASTER_SECRET_LEN;
646 if (os_get_random(out, outlen)) {
656 res = tlsv1_server_derive_keys(conn, out, outlen);