Home | History | Annotate | Download | only in ssl

Lines Matching defs:out

34  *    The word 'cryptographic' can be left out if the rouines from the library
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
452 uint8_t *out;
455 if (!SSL_SESSION_to_bytes(in, &out, &len)) {
460 OPENSSL_free(out);
466 OPENSSL_memcpy(*pp, out, len);
469 OPENSSL_free(out);
475 * explicitly tagged with |tag| from |cbs| and saves it in |*out|. On
476 * entry, if |*out| is not NULL, it frees the existing contents. If
477 * the element was not found, it sets |*out| to NULL. It returns one
480 static int SSL_SESSION_parse_string(CBS *cbs, char **out, unsigned tag) {
492 if (!CBS_strdup(&value, out)) {
497 OPENSSL_free(*out);
498 *out = NULL;
526 CBS *cbs, uint8_t *out, uint8_t *out_len, uint8_t max_out, unsigned tag) {
533 OPENSSL_memcpy(out, CBS_data(&value), CBS_len(&value));
538 static int SSL_SESSION_parse_long(CBS *cbs, long *out, unsigned tag,
547 *out = (long)value;
551 static int SSL_SESSION_parse_u32(CBS *cbs, uint32_t *out, unsigned tag,
560 *out = (uint32_t)value;
564 static int SSL_SESSION_parse_u16(CBS *cbs, uint16_t *out, unsigned tag,
573 *out = (uint16_t)value;