Home | History | Annotate | Download | only in tls

Lines Matching defs:outlen

488 	size_t outlen, outbuflen;
509 outbuflen = outlen = end - pos;
510 out = os_malloc(outlen >= TLS_PRE_MASTER_SECRET_LEN ?
511 outlen : TLS_PRE_MASTER_SECRET_LEN);
538 out, &outlen) < 0) {
540 "PreMasterSecret (encr_len=%u outlen=%lu)",
541 encr_len, (unsigned long) outlen);
545 if (!use_random && outlen != TLS_PRE_MASTER_SECRET_LEN) {
547 (unsigned long) outlen);
559 outlen = TLS_PRE_MASTER_SECRET_LEN;
560 if (os_get_random(out, outlen)) {
570 res = tlsv1_server_derive_keys(conn, out, outlen);