| /include/internal/ |
| A D | quic_ssl.h | 50 __owur int ossl_quic_init(SSL *s); 51 void ossl_quic_deinit(SSL *s); 52 void ossl_quic_free(SSL *s); 53 int ossl_quic_reset(SSL *s); 54 int ossl_quic_clear(SSL *s); 55 __owur int ossl_quic_accept(SSL *s); 56 __owur int ossl_quic_connect(SSL *s); 74 int ossl_quic_do_handshake(SSL *s); 88 __owur int ossl_quic_want(const SSL *s); 150 int ossl_quic_set_override_now_cb(SSL *s, [all …]
|
| A D | sockets.h | 62 # define accept(s,f,l) ((int)accept(s,f,l)) argument 180 # define closesocket(s) close_s(s) argument 181 # define readsocket(s,b,n) read_s(s,b,n) argument 182 # define writesocket(s,b,n) send(s,b,n,0) argument 185 # define closesocket(s) close(s) argument 190 # define closesocket(s) close(s) argument 194 # define readsocket(s,b,n) read((s),(b),(n)) argument 195 # define writesocket(s,b,n) write((s),(b),(n)) argument 197 # define closesocket(s) close(s) argument 200 # define closesocket(s) close(s) argument [all …]
|
| A D | statem.h | 139 __owur int ossl_statem_accept(SSL *s); 140 __owur int ossl_statem_connect(SSL *s); 142 void ossl_statem_clear(SSL_CONNECTION *s); 143 void ossl_statem_set_renegotiate(SSL_CONNECTION *s); 144 void ossl_statem_send_fatal(SSL_CONNECTION *s, int al); 147 # define SSLfatal_alert(s, al) ossl_statem_send_fatal((s), (al)) argument 148 # define SSLfatal(s, al, r) SSLfatal_data((s), (al), (r), NULL) argument 154 int ossl_statem_in_error(const SSL_CONNECTION *s); 156 int ossl_statem_get_in_handshake(SSL_CONNECTION *s); 166 int statem_flush(SSL_CONNECTION *s); [all …]
|
| A D | quic_stream_map.h | 328 void ossl_quic_stream_check(const QUIC_STREAM *s); 350 return ossl_quic_stream_is_server_init(s) == s->as_server; in ossl_quic_stream_is_local_init() 362 return s->send_state != QUIC_SSTREAM_STATE_NONE; in ossl_quic_stream_has_send() 375 return s->recv_state != QUIC_RSTREAM_STATE_NONE; in ossl_quic_stream_has_recv() 397 switch (s->send_state) { in ossl_quic_stream_has_send_buffer() 413 return s->send_state == QUIC_SSTREAM_STATE_RESET_SENT in ossl_quic_stream_send_is_reset() 430 switch (s->recv_state) { in ossl_quic_stream_has_recv_buffer() 459 switch (s->send_state) { in ossl_quic_stream_send_get_final_size() 475 *final_size = s->send_final_size; in ossl_quic_stream_send_get_final_size() 489 switch (s->recv_state) { in ossl_quic_stream_recv_get_final_size() [all …]
|
| A D | uint_set.h | 41 void ossl_uint_set_init(UINT_SET *s); 42 void ossl_uint_set_destroy(UINT_SET *s); 50 int ossl_uint_set_insert(UINT_SET *s, const UINT_RANGE *range); 58 int ossl_uint_set_remove(UINT_SET *s, const UINT_RANGE *range); 61 int ossl_uint_set_query(const UINT_SET *s, uint64_t v);
|
| A D | common.h | 63 #define HAS_CASE_PREFIX(s, p) (OPENSSL_strncasecmp(s, p "", sizeof(p) - 1) == 0) argument 174 # define n2s(c,s) ((s=(((unsigned int)((c)[0]))<< 8)| \ argument 176 # define s2n(s,c) (((c)[0]=(unsigned char)(((s)>> 8)&0xff), \ argument 177 (c)[1]=(unsigned char)(((s) )&0xff)),(c)+=2)
|
| A D | ssl.h | 19 int ossl_ssl_get_error(const SSL *s, int i, int check_err);
|
| A D | ktls.h | 199 static ossl_inline ossl_ssize_t ktls_sendfile(int s, int fd, off_t off, in ktls_sendfile() argument 205 ret = sendfile(fd, s, off, size, NULL, &sbytes, flags); in ktls_sendfile() 362 static ossl_inline ossl_ssize_t ktls_sendfile(int s, int fd, off_t off, size_t size, int flags) in ktls_sendfile() argument 364 return sendfile(s, fd, &off, size); in ktls_sendfile()
|
| A D | quic_tls.h | 22 SSL *s; member
|
| A D | time.h | 42 #define ossl_seconds2time(s) ossl_ticks2time((s) * OSSL_TIME_SECOND) argument
|
| A D | property.h | 32 OSSL_PROPERTY_LIST *ossl_parse_query(OSSL_LIB_CTX *ctx, const char *s,
|
| /include/openssl/ |
| A D | ssl.h.in | 917 # define SSL_want_nothing(s) (SSL_want(s) == SSL_NOTHING) argument 918 # define SSL_want_read(s) (SSL_want(s) == SSL_READING) argument 919 # define SSL_want_write(s) (SSL_want(s) == SSL_WRITING) argument 920 # define SSL_want_x509_lookup(s) (SSL_want(s) == SSL_X509_LOOKUP) argument 921 # define SSL_want_retry_verify(s) (SSL_want(s) == SSL_RETRY_VERIFY) argument 922 # define SSL_want_async(s) (SSL_want(s) == SSL_ASYNC_PAUSED) argument 923 # define SSL_want_async_job(s) (SSL_want(s) == SSL_ASYNC_NO_JOBS) argument 984 # define SSL_get_app_data(s) (SSL_get_ex_data(s,0)) argument 987 # define SSL_SESSION_get_app_data(s) (SSL_SESSION_get_ex_data(s,0)) argument 2547 # define SSL_cache_hit(s) SSL_session_reused(s) argument [all …]
|
| A D | buffer.h | 34 # define BUF_strdup(s) OPENSSL_strdup(s) argument 35 # define BUF_strndup(s, size) OPENSSL_strndup(s, size) argument
|
| A D | tls1.h | 51 # define TLS1_get_version(s) \ argument 52 ((SSL_version(s) >> 8) == TLS1_VERSION_MAJOR ? SSL_version(s) : 0) 54 # define TLS1_get_client_version(s) \ argument 55 ((SSL_client_version(s) >> 8) == TLS1_VERSION_MAJOR ? SSL_client_version(s) : 0) 251 __owur const char *SSL_get_servername(const SSL *s, const int type); 252 __owur int SSL_get_servername_type(const SSL *s); 278 int SSL_get_peer_signature_type_nid(const SSL *s, int *pnid); 279 int SSL_get_signature_type_nid(const SSL *s, int *pnid); 281 int SSL_get_sigalgs(SSL *s, int idx, 287 int SSL_get_shared_sigalgs(SSL *s, int idx, [all …]
|
| A D | seed.h | 80 void SEED_encrypt(const unsigned char s[SEED_BLOCK_SIZE], 84 void SEED_decrypt(const unsigned char s[SEED_BLOCK_SIZE],
|
| A D | objects.h | 71 ASN1_OBJECT *OBJ_txt2obj(const char *s, int no_name); 73 int OBJ_txt2nid(const char *s); 74 int OBJ_ln2nid(const char *s); 75 int OBJ_sn2nid(const char *s);
|
| A D | srtp.h | 60 __owur SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s);
|
| A D | srp.h.in | 56 BIGNUM *s; member 80 int SRP_user_pwd_set0_sv(SRP_user_pwd *user_pwd, BIGNUM *s, BIGNUM *v); 183 BIGNUM *SRP_Calc_x_ex(const BIGNUM *s, const char *user, const char *pass, 186 BIGNUM *SRP_Calc_x(const BIGNUM *s, const char *user, const char *pass);
|
| A D | asn1.h.in | 160 /* String should be parsed in RFC 5280's time format */ 620 ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t); 621 ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, 679 ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s, time_t t); 680 ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s, time_t t, 685 int ASN1_TIME_set_string(ASN1_TIME *s, const char *str); 687 int ASN1_TIME_to_tm(const ASN1_TIME *s, struct tm *tm); 688 int ASN1_TIME_normalize(ASN1_TIME *s); 689 int ASN1_TIME_cmp_time_t(const ASN1_TIME *s, time_t t); 726 int ASN1_PRINTABLE_type(const unsigned char *s, int max); [all …]
|
| A D | bn.h | 243 BIGNUM *BN_bin2bn(const unsigned char *s, int len, BIGNUM *ret); 244 BIGNUM *BN_signed_bin2bn(const unsigned char *s, int len, BIGNUM *ret); 248 BIGNUM *BN_lebin2bn(const unsigned char *s, int len, BIGNUM *ret); 249 BIGNUM *BN_signed_lebin2bn(const unsigned char *s, int len, BIGNUM *ret); 252 BIGNUM *BN_native2bn(const unsigned char *s, int len, BIGNUM *ret); 253 BIGNUM *BN_signed_native2bn(const unsigned char *s, int len, BIGNUM *ret); 256 BIGNUM *BN_mpi2bn(const unsigned char *s, int len, BIGNUM *ret);
|
| A D | rsa.h | 208 # define RSA_set_app_data(s,arg) RSA_set_ex_data(s,0,arg) argument 209 # define RSA_get_app_data(s) RSA_get_ex_data(s,0) argument
|
| A D | core_dispatch.h | 291 (SSL *s, const unsigned char *buf, size_t buf_len, 295 (SSL *s, const unsigned char **buf, size_t *bytes_read, 299 (SSL *s, size_t bytes_read, void *arg)) 302 (SSL *s, uint32_t prot_level, int direction, 306 (SSL *s, const unsigned char *params, size_t params_len, 310 (SSL *s, unsigned char alert_code, void *arg))
|
| /include/crypto/ |
| A D | asn1_dsa.h | 18 int ossl_encode_der_dsa_sig(WPACKET *pkt, const BIGNUM *r, const BIGNUM *s); 21 size_t ossl_decode_der_dsa_sig(BIGNUM *r, BIGNUM *s, const unsigned char **ppin,
|
| A D | ml_kem.h | 186 struct ossl_ml_kem_scalar_st *s; /* Private key secret vector */ member 208 # define ossl_ml_kem_have_prvkey(key) ((key)->s != NULL) 212 || ((key)->s == NULL && (key)->d != NULL))
|
| A D | dso_conf.h.in | 17 # of view. However, the "method"s may return zero unless that platform
|