Lines Matching +full:out +full:- +full:functions
9 - get internal TLS/SSL random values and get/set master key
15 size_t SSL_get_client_random(const SSL *ssl, unsigned char *out, size_t outlen);
16 size_t SSL_get_server_random(const SSL *ssl, unsigned char *out, size_t outlen);
18 unsigned char *out, size_t outlen);
26 bytes as it can of this value into the buffer provided in B<out>,
49 You probably shouldn't use these functions.
51 These functions expose internal values from the TLS handshake, for
52 use in low-level protocols. You probably should not use them, unless
57 ARE NOT random number generators. Instead, they return the mostly-random values that
65 forget that you ever saw these functions.
69 other outlen arguments to the SSL_get_*_random() functions is provided
82 For the other functions, if B<outlen> is greater than 0 then these functions
84 B<outlen>. If B<outlen> is 0 then these functions return the maximum number
85 of bytes they would copy -- that is, the length of the underlying field.
97 Copyright 2015-2017 The OpenSSL Project Authors. All Rights Reserved.