Home
last modified time | relevance | path

Searched defs:r (Results 1 – 25 of 194) sorted by relevance

12345678

/openssl-master/ssl/record/
A Drecord_local.h81 #define SSL3_RECORD_get_type(r) ((r)->type) argument
84 #define SSL3_RECORD_get_length(r) ((r)->length) argument
88 #define SSL3_RECORD_get_data(r) ((r)->data) argument
90 #define SSL3_RECORD_get_input(r) ((r)->input) argument
94 #define SSL3_RECORD_get_seq_num(r) ((r)->seq_num) argument
95 #define SSL3_RECORD_get_off(r) ((r)->off) argument
96 #define SSL3_RECORD_set_off(r, o) ((r)->off = (o)) argument
98 #define SSL3_RECORD_get_epoch(r) ((r)->epoch) argument
99 #define SSL3_RECORD_is_sslv2_record(r) \ argument
101 #define SSL3_RECORD_is_read(r) ((r)->read) argument
[all …]
/openssl-master/include/openssl/
A Derr.h.in131 # define BIOerr(f, r) ERR_raise_data(ERR_LIB_BIO, (r), NULL) argument
132 # define BNerr(f, r) ERR_raise_data(ERR_LIB_BN, (r), NULL) argument
133 # define BUFerr(f, r) ERR_raise_data(ERR_LIB_BUF, (r), NULL) argument
134 # define CMPerr(f, r) ERR_raise_data(ERR_LIB_CMP, (r), NULL) argument
135 # define CMSerr(f, r) ERR_raise_data(ERR_LIB_CMS, (r), NULL) argument
140 # define CTerr(f, r) ERR_raise_data(ERR_LIB_CT, (r), NULL) argument
141 # define DHerr(f, r) ERR_raise_data(ERR_LIB_DH, (r), NULL) argument
142 # define DSAerr(f, r) ERR_raise_data(ERR_LIB_DSA, (r), NULL) argument
146 # define ECerr(f, r) ERR_raise_data(ERR_LIB_EC, (r), NULL) argument
168 # define TSerr(f, r) ERR_raise_data(ERR_LIB_TS, (r), NULL) argument
[all …]
/openssl-master/crypto/rsa/
A Drsa_lib.c133 void RSA_free(RSA *r) in RSA_free()
180 int RSA_up_ref(RSA *r) in RSA_up_ref()
248 uint64_t r = 0; in icbrt64() local
272 uint32_t i, r = 0; in ilog_e() local
545 void RSA_get0_key(const RSA *r, in RSA_get0_key()
596 void RSA_get0_crt_params(const RSA *r, in RSA_get0_crt_params()
636 const BIGNUM *RSA_get0_n(const RSA *r) in RSA_get0_n()
641 const BIGNUM *RSA_get0_e(const RSA *r) in RSA_get0_e()
713 void RSA_set_flags(RSA *r, int flags) in RSA_set_flags()
718 int RSA_get_version(RSA *r) in RSA_get_version()
[all …]
A Drsa_acvp_test_params.c79 int ossl_rsa_acvp_test_set_params(RSA *r, const OSSL_PARAM params[]) in ossl_rsa_acvp_test_set_params()
125 int ossl_rsa_acvp_test_get_params(RSA *r, OSSL_PARAM params[]) in ossl_rsa_acvp_test_get_params()
/openssl-master/crypto/bn/
A Dbn_mod.c13 int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx) in BN_nnmod()
28 int BN_mod_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, in BN_mod_add()
48 int bn_mod_add_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in bn_mod_add_fixed_top()
99 int BN_mod_add_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in BN_mod_add_quick()
110 int BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, in BN_mod_sub()
132 int bn_mod_sub_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in bn_mod_sub_fixed_top()
186 int BN_mod_sub_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in BN_mod_sub_quick()
226 int BN_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx) in BN_mod_sqr()
246 int BN_mod_lshift1_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *m) in BN_mod_lshift1_quick()
256 int BN_mod_lshift(BIGNUM *r, const BIGNUM *a, int n, const BIGNUM *m, in BN_mod_lshift()
[all …]
A Dbn_shift.c14 int BN_lshift1(BIGNUM *r, const BIGNUM *a) in BN_lshift1()
45 int BN_rshift1(BIGNUM *r, const BIGNUM *a) in BN_rshift1()
81 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n) in BN_lshift()
104 int bn_lshift_fixed_top(BIGNUM *r, const BIGNUM *a, int n) in bn_lshift_fixed_top()
150 int BN_rshift(BIGNUM *r, const BIGNUM *a, int n) in BN_rshift()
173 int bn_rshift_fixed_top(BIGNUM *r, const BIGNUM *a, int n) in bn_rshift_fixed_top()
A Dbn_mul.c27 BN_ULONG bn_sub_part_words(BN_ULONG *r, in bn_sub_part_words()
175 void bn_mul_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n2, in bn_mul_recursive()
322 void bn_mul_part_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n, in bn_mul_part_recursive()
477 void bn_mul_low_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n2, in bn_mul_low_recursive()
497 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) in BN_mul()
507 int bn_mul_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) in bn_mul_fixed_top()
622 void bn_mul_normal(BN_ULONG *r, BN_ULONG *a, int na, BN_ULONG *b, int nb) in bn_mul_normal()
664 void bn_mul_low_normal(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n) in bn_mul_low_normal()
A Dbn_gf2m.c252 int BN_GF2m_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) in BN_GF2m_add()
292 int BN_GF2m_mod_arr(BIGNUM *r, const BIGNUM *a, const int p[]) in BN_GF2m_mod_arr()
390 int BN_GF2m_mod(BIGNUM *r, const BIGNUM *a, const BIGNUM *p) in BN_GF2m_mod()
410 int BN_GF2m_mod_mul_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in BN_GF2m_mod_mul_arr()
465 int BN_GF2m_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in BN_GF2m_mod_mul()
494 int BN_GF2m_mod_sqr_arr(BIGNUM *r, const BIGNUM *a, const int p[], in BN_GF2m_mod_sqr_arr()
561 static int BN_GF2m_mod_inv_vartime(BIGNUM *r, const BIGNUM *a, in BN_GF2m_mod_inv_vartime()
774 int BN_GF2m_mod_inv_arr(BIGNUM *r, const BIGNUM *xx, const int p[], in BN_GF2m_mod_inv_arr()
799 int BN_GF2m_mod_div(BIGNUM *r, const BIGNUM *y, const BIGNUM *x, in BN_GF2m_mod_div()
906 int BN_GF2m_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in BN_GF2m_mod_exp()
[all …]
A Dbn_add.c14 int BN_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) in BN_add()
45 int BN_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) in BN_sub()
76 int BN_uadd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) in BN_uadd()
125 int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) in BN_usub()
A Dbn_sqr.c17 int BN_sqr(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) in BN_sqr()
27 int bn_sqr_fixed_top(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) in bn_sqr_fixed_top()
109 void bn_sqr_normal(BN_ULONG *r, const BN_ULONG *a, int n, BN_ULONG *tmp) in bn_sqr_normal()
156 void bn_sqr_recursive(BN_ULONG *r, const BN_ULONG *a, int n2, BN_ULONG *t) in bn_sqr_recursive()
A Dbn_rand.c133 static int bnrand_range(BNRAND_FLAG flag, BIGNUM *r, const BIGNUM *range, in bnrand_range()
200 int BN_rand_range_ex(BIGNUM *r, const BIGNUM *range, unsigned int strength, in BN_rand_range_ex()
207 int BN_rand_range(BIGNUM *r, const BIGNUM *range) in BN_rand_range()
213 int BN_priv_rand_range_ex(BIGNUM *r, const BIGNUM *range, unsigned int strength, in BN_priv_rand_range_ex()
220 int BN_priv_rand_range(BIGNUM *r, const BIGNUM *range) in BN_priv_rand_range()
231 int BN_pseudo_rand_range(BIGNUM *r, const BIGNUM *range) in BN_pseudo_rand_range()
A Dbn_recp.c55 int BN_mod_mul_reciprocal(BIGNUM *r, const BIGNUM *x, const BIGNUM *y, in BN_mod_mul_reciprocal()
88 BIGNUM *a, *b, *d, *r; in BN_div_recp() local
174 int BN_reciprocal(BIGNUM *r, const BIGNUM *m, int len, BN_CTX *ctx) in BN_reciprocal()
A Dbn_asm.c75 void bn_sqr_words(BN_ULONG *r, const BN_ULONG *a, int n) in bn_sqr_words()
168 void bn_sqr_words(BN_ULONG *r, const BN_ULONG *a, int n) in bn_sqr_words()
272 BN_ULONG bn_add_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, in bn_add_words()
581 void bn_mul_comba8(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba8()
684 void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba4()
723 void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba8()
798 void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba4()
955 void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba4()
961 void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba8()
967 void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba4()
[all …]
/openssl-master/crypto/ec/
A Decp_mont.c196 int ossl_ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, in ossl_ec_GFp_mont_field_mul()
207 int ossl_ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, in ossl_ec_GFp_mont_field_sqr()
223 int ossl_ec_GFp_mont_field_inv(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, in ossl_ec_GFp_mont_field_inv()
267 int ossl_ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, in ossl_ec_GFp_mont_field_encode()
278 int ossl_ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, in ossl_ec_GFp_mont_field_decode()
289 int ossl_ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, in ossl_ec_GFp_mont_field_set_to_one()
A Dec2_smpl.c356 int ossl_ec_GF2m_simple_add(const EC_GROUP *group, EC_POINT *r, in ossl_ec_GF2m_simple_add()
477 int ossl_ec_GF2m_simple_dbl(const EC_GROUP *group, EC_POINT *r, in ossl_ec_GF2m_simple_dbl()
695 int ossl_ec_GF2m_simple_field_mul(const EC_GROUP *group, BIGNUM *r, in ossl_ec_GF2m_simple_field_mul()
702 int ossl_ec_GF2m_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, in ossl_ec_GF2m_simple_field_sqr()
709 int ossl_ec_GF2m_simple_field_div(const EC_GROUP *group, BIGNUM *r, in ossl_ec_GF2m_simple_field_div()
723 EC_POINT *r, EC_POINT *s, in ec_GF2m_simple_ladder_pre()
776 EC_POINT *r, EC_POINT *s, in ec_GF2m_simple_ladder_step()
806 EC_POINT *r, EC_POINT *s, in ec_GF2m_simple_ladder_post()
868 int ec_GF2m_simple_points_mul(const EC_GROUP *group, EC_POINT *r, in ec_GF2m_simple_points_mul()
929 static int ec_GF2m_simple_field_inv(const EC_GROUP *group, BIGNUM *r, in ec_GF2m_simple_field_inv()
/openssl-master/crypto/asn1/
A Da_int.c216 uint64_t r; in asn1_get_uint64() local
258 uint64_t r; in asn1_get_int64() local
290 size_t r; in ossl_c2i_ASN1_INTEGER() local
340 static int asn1_string_set_int64(ASN1_STRING *a, int64_t r, int itype) in asn1_string_set_int64()
379 static int asn1_string_set_uint64(ASN1_STRING *a, uint64_t r, int itype) in asn1_string_set_uint64()
530 int ASN1_INTEGER_set_int64(ASN1_INTEGER *a, int64_t r) in ASN1_INTEGER_set_int64()
540 int ASN1_INTEGER_set_uint64(ASN1_INTEGER *a, uint64_t r) in ASN1_INTEGER_set_uint64()
553 int64_t r; in ASN1_INTEGER_get() local
579 int ASN1_ENUMERATED_set_int64(ASN1_ENUMERATED *a, int64_t r) in ASN1_ENUMERATED_set_int64()
592 int64_t r; in ASN1_ENUMERATED_get() local
[all …]
/openssl-master/crypto/bn/asm/
A Dx86_64-gcc.c74 # define mul_add(r,a,word,carry) do { \ argument
91 # define mul(r,a,word,carry) do { \ argument
169 void bn_sqr_words(BN_ULONG *r, const BN_ULONG *a, int n) in bn_sqr_words()
260 BN_ULONG bn_sub_words(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n) in bn_sub_words()
393 void bn_mul_comba8(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba8()
496 void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba4()
535 void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba8()
610 void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba4()
/openssl-master/crypto/des/
A Ddes_enc.c22 register DES_LONG l, r, t, u; in DES_encrypt1() local
93 register DES_LONG l, r, t, u; in DES_encrypt2() local
158 register DES_LONG l, r; in DES_encrypt3() local
178 register DES_LONG l, r; in DES_decrypt3() local
/openssl-master/test/
A Dcrltest.c297 int r; in test_basic_crl() local
322 int r; in test_bad_issuer_crl() local
336 int r; in test_known_critical_crl() local
349 int r; in test_unknown_critical_crl() local
/openssl-master/crypto/cms/
A Dcms_smime.c36 int r = 0, i; in cms_copy_content() local
107 int r; in CMS_data() local
145 int r; in CMS_digest_verify() local
203 int r; in CMS_EncryptedData_decrypt() local
269 int i, j, r = 0; in cms_signerinfo_verify_cert() local
494 int r; in CMS_verify_receipt() local
562 int r = 0; in CMS_sign_receipt() local
785 int i, r; in CMS_decrypt_set1_key() local
821 int i, r; in CMS_decrypt_set1_password() local
843 int r; in CMS_decrypt() local
[all …]
/openssl-master/crypto/idea/
A Di_skey.c63 int r; in IDEA_set_decrypt_key() local
93 long n1, n2, q, r, b1, b2, t; in inverse() local
/openssl-master/engines/
A De_dasync_err.h19 # define DASYNCerr(f, r) ERR_DASYNC_error(0, (r), OPENSSL_FILE, OPENSSL_LINE) argument
A De_ossltest_err.h19 # define OSSLTESTerr(f, r) ERR_OSSLTEST_error(0, (r), OPENSSL_FILE, OPENSSL_LINE) argument
/openssl-master/crypto/bf/
A Dbf_enc.c32 register BF_LONG l, r; in BF_encrypt() local
71 register BF_LONG l, r; in BF_decrypt() local
/openssl-master/crypto/cast/
A Dc_enc.c21 CAST_LONG l, r, t; in CAST_encrypt() local
53 CAST_LONG l, r, t; in CAST_decrypt() local

Completed in 53 milliseconds

12345678