Home
last modified time | relevance | path

Searched refs:SSL3_ALIGN_PAYLOAD (Results 1 – 4 of 4) sorted by relevance

/freebsd/crypto/openssl/ssl/record/
H A Dssl3_buffer.c50 #if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0 in ssl3_setup_read_buffer()
51 align = (-SSL3_RT_HEADER_LENGTH) & (SSL3_ALIGN_PAYLOAD - 1); in ssl3_setup_read_buffer()
99 #if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0 in ssl3_setup_write_buffer()
100 align = SSL3_ALIGN_PAYLOAD - 1; in ssl3_setup_write_buffer()
H A Drec_layer_s3.c218 #if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0 in ssl3_read_n()
220 align = SSL3_ALIGN_PAYLOAD - 1 - ((align - 1) % SSL3_ALIGN_PAYLOAD); in ssl3_read_n()
795 #if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0 in do_ssl3_write()
798 * multiple of SSL3_ALIGN_PAYLOAD, so if we want to align the real in do_ssl3_write()
802 align = SSL3_ALIGN_PAYLOAD - 1 - ((align - 1) % SSL3_ALIGN_PAYLOAD); in do_ssl3_write()
828 #if defined(SSL3_ALIGN_PAYLOAD) in do_ssl3_write()
[all...]
/freebsd/crypto/openssl/include/openssl/
H A Dssl3.h143 # ifndef SSL3_ALIGN_PAYLOAD
152 # define SSL3_ALIGN_PAYLOAD 8 macro
154 # if (SSL3_ALIGN_PAYLOAD&(SSL3_ALIGN_PAYLOAD-1))!=0
156 # undef SSL3_ALIGN_PAYLOAD
/freebsd/crypto/openssl/ssl/
H A Dd1_lib.c507 #if defined(SSL3_ALIGN_PAYLOAD) in DTLSv1_listen()
508 # if SSL3_ALIGN_PAYLOAD != 0 in DTLSv1_listen()
516 align = SSL3_ALIGN_PAYLOAD - 1 - ((align - 1) % SSL3_ALIGN_PAYLOAD); in DTLSv1_listen()