Home
last modified time | relevance | path

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

123456789

/openssl/ssl/record/
H A Drecord_local.h57 #define SSL3_RECORD_get_type(r) ((r)->type) argument
58 #define SSL3_RECORD_set_type(r, t) ((r)->type = (t)) argument
60 #define SSL3_RECORD_get_length(r) ((r)->length) argument
64 #define SSL3_RECORD_get_data(r) ((r)->data) argument
65 #define SSL3_RECORD_set_data(r, d) ((r)->data = (d)) argument
66 #define SSL3_RECORD_get_input(r) ((r)->input) argument
70 #define SSL3_RECORD_get_seq_num(r) ((r)->seq_num) argument
71 #define SSL3_RECORD_get_off(r) ((r)->off) argument
72 #define SSL3_RECORD_set_off(r, o) ((r)->off = (o)) argument
73 #define SSL3_RECORD_add_off(r, o) ((r)->off += (o)) argument
[all …]
/openssl/include/openssl/
H 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/crypto/bn/
H 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 …]
H 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()
H 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()
H 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 …]
H 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()
H 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()
H A Drsaz_exp.h57 static ossl_inline void bn_select_words(BN_ULONG *r, BN_ULONG mask, in bn_select_words()
68 static ossl_inline BN_ULONG bn_reduce_once_in_place(BN_ULONG *r, in bn_reduce_once_in_place()
H A Dbn_rand.c133 static int bnrand_range(BNRAND_FLAG flag, BIGNUM *r, const BIGNUM *range, in bnrand_range()
205 int BN_rand_range_ex(BIGNUM *r, const BIGNUM *range, unsigned int strength, in BN_rand_range_ex()
212 int BN_rand_range(BIGNUM *r, const BIGNUM *range) in BN_rand_range()
218 int BN_priv_rand_range_ex(BIGNUM *r, const BIGNUM *range, unsigned int strength, in BN_priv_rand_range_ex()
225 int BN_priv_rand_range(BIGNUM *r, const BIGNUM *range) in BN_priv_rand_range()
236 int BN_pseudo_rand_range(BIGNUM *r, const BIGNUM *range) in BN_pseudo_rand_range()
H 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()
H 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()
576 void bn_mul_comba8(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba8()
679 void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba4()
718 void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba8()
793 void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba4()
948 void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba4()
954 void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba8()
960 void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba4()
[all …]
/openssl/crypto/rsa/
H 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 …]
H 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/crypto/ec/
H 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()
H 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/crypto/asn1/
H 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()
528 int ASN1_INTEGER_set_int64(ASN1_INTEGER *a, int64_t r) in ASN1_INTEGER_set_int64()
538 int ASN1_INTEGER_set_uint64(ASN1_INTEGER *a, uint64_t r) in ASN1_INTEGER_set_uint64()
551 int64_t r; in ASN1_INTEGER_get() local
577 int ASN1_ENUMERATED_set_int64(ASN1_ENUMERATED *a, int64_t r) in ASN1_ENUMERATED_set_int64()
590 int64_t r; in ASN1_ENUMERATED_get() local
[all …]
/openssl/include/internal/
H A Dtime.h41 OSSL_TIME r; in ossl_ticks2time() local
125 OSSL_TIME r; in OSSL_SAFE_MATH_UNSIGNED() local
135 OSSL_TIME r; in ossl_time_subtract() local
153 OSSL_TIME r; in ossl_time_multiply() local
163 OSSL_TIME r; in ossl_time_divide() local
/openssl/crypto/bn/asm/
H 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/crypto/des/
H 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/test/
H A Dcrltest.c311 int r; in test_basic_crl() local
336 int r; in test_bad_issuer_crl() local
350 int r; in test_known_critical_crl() local
363 int r; in test_unknown_critical_crl() local
/openssl/crypto/cms/
H 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
495 int r; in CMS_verify_receipt() local
563 int r = 0; in CMS_sign_receipt() local
786 int i, r; in CMS_decrypt_set1_key() local
822 int i, r; in CMS_decrypt_set1_password() local
844 int r; in CMS_decrypt() local
[all …]
/openssl/crypto/idea/
H 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/engines/
H A De_ossltest_err.h19 # define OSSLTESTerr(f, r) ERR_OSSLTEST_error(0, (r), OPENSSL_FILE, OPENSSL_LINE) argument
H A De_dasync_err.h19 # define DASYNCerr(f, r) ERR_DASYNC_error(0, (r), OPENSSL_FILE, OPENSSL_LINE) argument

Completed in 106 milliseconds

123456789