| /include/internal/ |
| A D | quic_vlint.h | 39 static ossl_unused ossl_inline size_t ossl_quic_vlint_encode_len(uint64_t v) in ossl_quic_vlint_encode_len() argument 41 if (v < OSSL_QUIC_VLINT_2B_MIN) in ossl_quic_vlint_encode_len() 44 if (v < OSSL_QUIC_VLINT_4B_MIN) in ossl_quic_vlint_encode_len() 47 if (v < OSSL_QUIC_VLINT_8B_MIN) in ossl_quic_vlint_encode_len() 50 if (v <= OSSL_QUIC_VLINT_MAX) in ossl_quic_vlint_encode_len() 68 void ossl_quic_vlint_encode(unsigned char *buf, uint64_t v); 90 void ossl_quic_vlint_encode_n(unsigned char *buf, uint64_t v, int n); 123 int ossl_quic_vlint_decode(const unsigned char *buf, size_t buf_len, uint64_t *v);
|
| A D | hashtable.h | 206 pfx ossl_unused vtype *ossl_ht_##name##_##vtype##_from_value(HT_VALUE *v) \ 209 if (v == NULL) \ 211 if (v->type_id != expect_type) \ 213 return (vtype *)v->value; \ 218 HT_VALUE **v)\ 224 *v = ossl_rcu_deref(&vv); \ 225 return ossl_ht_##name##_##vtype##_from_value(*v); \ 229 HT_VALUE *v) \ 231 v->type_id = &name##_##vtype##_id; \ 232 v->value = data; \ [all …]
|
| A D | rcu.h | 29 void ossl_rcu_assign_uptr(void **p, void **v); 31 #define ossl_rcu_assign_ptr(p,v) ossl_rcu_assign_uptr((void **)p, (void **)v) argument
|
| A D | der.h | 81 int ossl_DER_w_uint32(WPACKET *pkt, int tag, uint32_t v); 82 int ossl_DER_w_bn(WPACKET *pkt, int tag, const BIGNUM *v);
|
| A D | uint_set.h | 61 int ossl_uint_set_query(const UINT_SET *s, uint64_t v);
|
| A D | packet_quic.h | 147 __owur int WPACKET_quic_write_vlint(WPACKET *pkt, uint64_t v);
|
| /include/crypto/ |
| A D | modes.h | 101 # define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) argument 104 # define PUTU32(p,v) ((p)[0]=(u8)((v)>>24),(p)[1]=(u8)((v)>>16),(p)[2]=(u8)((v)>>8),(p)[3]=(u8)… argument
|
| /include/openssl/ |
| A D | srp.h.in | 57 BIGNUM *v; member 80 int SRP_user_pwd_set0_sv(SRP_user_pwd *user_pwd, BIGNUM *s, BIGNUM *v); 153 # define DB_SRP_MODIF 'v' 163 BIGNUM *SRP_Calc_server_key(const BIGNUM *A, const BIGNUM *v, const BIGNUM *u, 167 const BIGNUM *v, OSSL_LIB_CTX *libctx, const char *propq); 170 const BIGNUM *v);
|
| A D | engine.h | 770 OPENSSL_EXPORT unsigned long v_check(unsigned long v); \ 771 OPENSSL_EXPORT unsigned long v_check(unsigned long v) { \ 772 if (v >= OSSL_DYNAMIC_OLDEST) return OSSL_DYNAMIC_VERSION; \
|
| A D | pkcs7.h.in | 192 # define PKCS7_set_detached(p,v) \ argument 193 PKCS7_ctrl(p,PKCS7_OP_SET_DETACHED_SIGNATURE,v,NULL)
|
| A D | ssl.h.in | 1891 BIGNUM *sa, BIGNUM *v, char *info); 2154 void SSL_set_verify_result(SSL *ssl, long v); 2449 int SSL_set_value_uint(SSL *s, uint32_t class_, uint32_t id, uint64_t v); 2451 # define SSL_get_generic_value_uint(ssl, id, v) \ argument 2452 SSL_get_value_uint((ssl), SSL_VALUE_CLASS_GENERIC, (id), (v)) 2453 # define SSL_set_generic_value_uint(ssl, id, v) \ argument 2454 SSL_set_value_uint((ssl), SSL_VALUE_CLASS_GENERIC, (id), (v)) 2455 # define SSL_get_feature_request_uint(ssl, id, v) \ argument 2457 # define SSL_set_feature_request_uint(ssl, id, v) \ argument 2459 # define SSL_get_feature_peer_request_uint(ssl, id, v) \ argument [all …]
|
| A D | crmf.h.in | 61 void OSSL_CRMF_ATTRIBUTETYPEANDVALUE_free(OSSL_CRMF_ATTRIBUTETYPEANDVALUE *v);
|
| A D | asn1.h.in | 710 int ASN1_INTEGER_set(ASN1_INTEGER *a, long v); 719 int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v); 814 int ASN1_STRING_print(BIO *bp, const ASN1_STRING *v);
|
| A D | bio.h.in | 593 # define BIO_set_mem_eof_return(b,v) \ argument 594 BIO_ctrl(b,BIO_C_SET_BUF_MEM_EOF_RETURN,v,NULL)
|