/openssl/crypto/seed/ |
H A D | seed.c | 449 seed_word x1, x2, x3, x4; in SEED_set_key() local 453 char2word(rawkey + 4, x2); in SEED_set_key() 458 t1 = (x2 - x4 + KC0) & 0xffffffff; in SEED_set_key() 509 seed_word x1, x2, x3, x4; in SEED_encrypt() local 513 char2word(s + 4, x2); in SEED_encrypt() 518 E_SEED(t0, t1, x1, x2, x3, x4, 0); in SEED_encrypt() 519 E_SEED(t0, t1, x3, x4, x1, x2, 2); in SEED_encrypt() 547 word2char(x2, d + 12); in SEED_encrypt() 554 seed_word x1, x2, x3, x4; in SEED_decrypt() local 558 char2word(s + 4, x2); in SEED_decrypt() [all …]
|
/openssl/crypto/rc2/ |
H A D | rc2_cbc.c | 98 register RC2_INT x0, x1, x2, x3, t; in RC2_encrypt() local 105 x2 = (RC2_INT) l & 0xffff; in RC2_encrypt() 118 x2 = (t << 3) | (t >> 13); in RC2_encrypt() 119 t = (x3 + (x0 & ~x2) + (x1 & x2) + *(p0++)) & 0xffff; in RC2_encrypt() 129 x2 += p1[x1 & 0x3f]; in RC2_encrypt() 130 x3 += p1[x2 & 0x3f]; in RC2_encrypt() 144 register RC2_INT x0, x1, x2, x3, t; in RC2_decrypt() local 151 x2 = (RC2_INT) l & 0xffff; in RC2_decrypt() 161 x3 = (t - (x0 & ~x2) - (x1 & x2) - *(p0--)) & 0xffff; in RC2_decrypt() 162 t = ((x2 << 13) | (x2 >> 3)) & 0xffff; in RC2_decrypt() [all …]
|
/openssl/crypto/poly1305/ |
H A D | poly1305_ieee754.c | 231 double x0, x1, x2, x3; in poly1305_blocks() local 302 x2 = in2.d - TWO(52)*TWO64; in poly1305_blocks() 307 x2 += h2lo; in poly1305_blocks() 321 x2 = in2.d - TWO(52)*TWO64; in poly1305_blocks() 330 h2lo += x2; in poly1305_blocks() 350 x2 = (h2lo - c2lo) + c1lo; in poly1305_blocks() 355 x2 += (h2hi - c2hi) + c1hi; in poly1305_blocks() 365 h0lo = s3lo * x1 + s2lo * x2 + s1lo * x3 + r0lo * x0; in poly1305_blocks() 397 x2 = (h2lo - c2lo) + c1lo; in poly1305_blocks() 402 x2 += (h2hi - c2hi) + c1hi; in poly1305_blocks() [all …]
|
/openssl/crypto/poly1305/asm/ |
H A D | poly1305-ppcfp.pl | 328 lfd $x2,`$LOCALS+8*2`($sp) 343 fsub $x2,$x2,$two64 350 fadd $x2,$x2,$h2lo 423 fadd $x2,$h2lo,$h2hi 446 fmadd $h0lo,$s2lo,$x2,$h0lo 447 fmadd $h0hi,$s2hi,$x2,$h0hi 448 fmadd $h2lo,$r0lo,$x2,$h2lo 449 fmadd $h2hi,$r0hi,$x2,$h2hi 509 fadd $x2,$h2lo,$h2hi 515 fadd $x2,$x2,$two64 [all …]
|
H A D | poly1305-sparcv9.pl | 696 ldd [%sp+LOCALS+8*2],$x2 708 fsubd $x2,$two64,$x2 728 faddd $h2lo,$x2,$x2 805 faddd $h2lo,$h2hi,$x2 829 fmaddd $x2,$s2lo,$h0lo,$h0lo 830 fmaddd $x2,$s2hi,$h0hi,$h0hi 831 fmaddd $x2,$r0lo,$h2lo,$h2lo 832 fmaddd $x2,$r0hi,$h2hi,$h2hi 897 faddd $h2lo,$h2hi,$x2 902 faddd $x2,$two64,$x2 [all …]
|
/openssl/crypto/idea/ |
H A D | idea_local.h | 88 x2+= *(p++); \ 94 t1=(t0+(x2^x4))&0xffff; \ 99 ul=x2^t0; /* do the swap to x3 */ \ 100 x2=x3^t1; \
|
H A D | i_cbc.c | 99 register unsigned long x1, x2, x3, x4, t0, t1, ul; in IDEA_encrypt() local 101 x2 = d[0]; in IDEA_encrypt() 102 x1 = (x2 >> 16); in IDEA_encrypt() 122 t1 = x2 + *(p++); in IDEA_encrypt()
|
/openssl/crypto/aes/asm/ |
H A D | bsaes-armv8.pl | 1032 lsr x2, x2, #4 // len in 16 byte blocks 1056 subs x2, x2, #0x8 1100 adds x2, x2, #8 1104 cmp x2, #2 1111 cmp x2, #4 1116 cmp x2, #6 1238 mov x2, x3 1336 subs x2, x2, #8 1370 add x2, x2, #8 1374 cmp x2, #2 [all …]
|
H A D | bsaes-armv7.pl | 219 $x2,$x3,$y2,$y3,$t1)=@_; 224 vand $t1, $t1, $x2 226 veor $x2, $x2, $x3 230 vand $x2, $x2, $y3 232 veor $x2, $x2, $x3
|
/openssl/crypto/ec/ |
H A D | ec2_smpl.c | 359 BIGNUM *x0, *y0, *x1, *y1, *x2, *y2, *s, *t; in ossl_ec_GF2m_simple_add() local 390 x2 = BN_CTX_get(ctx); in ossl_ec_GF2m_simple_add() 423 if (!group->meth->field_sqr(group, x2, s, ctx)) in ossl_ec_GF2m_simple_add() 425 if (!BN_GF2m_add(x2, x2, group->a)) in ossl_ec_GF2m_simple_add() 427 if (!BN_GF2m_add(x2, x2, s)) in ossl_ec_GF2m_simple_add() 429 if (!BN_GF2m_add(x2, x2, t)) in ossl_ec_GF2m_simple_add() 443 if (!group->meth->field_sqr(group, x2, s, ctx)) in ossl_ec_GF2m_simple_add() 445 if (!BN_GF2m_add(x2, x2, s)) in ossl_ec_GF2m_simple_add() 447 if (!BN_GF2m_add(x2, x2, group->a)) in ossl_ec_GF2m_simple_add() 451 if (!BN_GF2m_add(y2, x1, x2)) in ossl_ec_GF2m_simple_add() [all …]
|
H A D | curve25519.c | 224 fe64_1(x2); in x25519_scalar_mulx() 238 fe64_add(x2, x2, z2); in x25519_scalar_mulx() 243 fe64_sqr(tmp1, x2); in x25519_scalar_mulx() 257 fe64_mul(x2, x2, z2); in x25519_scalar_mulx() 258 fe64_tobytes(out, x2); in x25519_scalar_mulx() 716 fe51_1(x2); in x25519_scalar_mult() 730 fe51_add(x2, x2, z2); in x25519_scalar_mult() 749 fe51_mul(x2, x2, z2); in x25519_scalar_mult() 4385 fe_1(x2); in x25519_scalar_mult_generic() 4398 fe_add(x2, x2, z2); in x25519_scalar_mult_generic() [all …]
|
H A D | ecp_sm2p256.c | 145 ALIGN32 BN_ULONG x2[4] = {0}; \ 158 mod_div(x2, x2); \ 162 mod_sub(x1, x1, x2); \ 165 mod_sub(x2, x2, x1); \ 171 memcpy(out, x2, 32); \
|
/openssl/crypto/sm2/ |
H A D | sm2_crypt.c | 118 BIGNUM *x2 = NULL; in ossl_sm2_encrypt() local 166 x2 = BN_CTX_get(ctx); in ossl_sm2_encrypt() 196 || !EC_POINT_get_affine_coordinates(group, kP, x2, y2, ctx)) { in ossl_sm2_encrypt() 201 if (BN_bn2binpad(x2, x2y2, field_size) < 0 in ossl_sm2_encrypt() 286 BIGNUM *x2 = NULL; in ossl_sm2_decrypt() local 332 x2 = BN_CTX_get(ctx); in ossl_sm2_decrypt() 357 || !EC_POINT_get_affine_coordinates(group, C1, x2, y2, ctx)) { in ossl_sm2_decrypt() 362 if (BN_bn2binpad(x2, x2y2, field_size) < 0 in ossl_sm2_decrypt()
|
/openssl/crypto/ec/curve448/ |
H A D | curve448.c | 391 gf x1, x2, z2, x3, z3, t1, t2; in ossl_x448_int() local 397 gf_copy(x2, ONE); in ossl_x448_int() 416 gf_cond_swap(x2, x3, swap); in ossl_x448_int() 425 gf_add_nr(t1, x2, z2); /* A = x2 + z2 */ /* 2+e */ in ossl_x448_int() 428 ossl_gf_mul(x2, t1, z2); /* DA */ in ossl_x448_int() 431 gf_sub_nr(z3, x2, x3); /* DA-CB */ /* 3+e */ in ossl_x448_int() 434 gf_add_nr(z2, x2, x3); /* (DA+CB) */ /* 2+e */ in ossl_x448_int() 439 ossl_gf_mul(x2, z2, t1); /* x2 = AA*BB */ in ossl_x448_int() 448 gf_cond_swap(x2, x3, swap); in ossl_x448_int() 451 ossl_gf_mul(x1, x2, z2); in ossl_x448_int() [all …]
|
/openssl/test/ |
H A D | crltest.c | 301 static STACK_OF(X509_CRL) *make_CRL_stack(X509_CRL *x1, X509_CRL *x2) in STACK_OF() 307 if (x2 != NULL) { in STACK_OF() 308 sk_X509_CRL_push(sk, x2); in STACK_OF() 309 X509_CRL_up_ref(x2); in STACK_OF()
|
H A D | ec_internal_test.c | 252 BIGNUM *x1 = NULL, *y1 = NULL, *z1 = NULL, *x2 = NULL, *y2 = NULL; in underflow_test() local 270 x2 = BN_CTX_get(ctx); in underflow_test() 292 || !TEST_true(EC_POINT_get_affine_coordinates(grp, R, x2, y2, ctx))) in underflow_test() 295 if (!TEST_int_eq(BN_cmp(x1, x2), 0) in underflow_test()
|
/openssl/test/certs/ |
H A D | root-ed25519.pem | 3 Version: 3 (0x2)
|
H A D | ee-ed25519.pem | 3 Version: 3 (0x2)
|
H A D | cyrillic.utf8 | 3 Version: 3 (0x2)
|
/openssl/test/recipes/25-test_rusext_data/ |
H A D | grfc.utf8 | 3 Version: 3 (0x2)
|
H A D | grfc.msb | 3 Version: 3 (0x2)
|
/openssl/include/openssl/ |
H A D | x509v3.h.in | 99 # define X509V3_CTX_REPLACE 0x2 119 # define X509V3_EXT_CTX_DEP 0x2 363 # define IDP_INVALID 0x2 410 # define EXFLAG_KUSAGE 0x2 454 # define XKU_SSL_CLIENT 0x2 464 # define X509_PURPOSE_DYNAMIC_NAME 0x2 768 # define X509_CHECK_FLAG_NO_WILDCARDS 0x2
|
/openssl/doc/man3/ |
H A D | PEM_read_bio_ex.pod | 13 #define PEM_FLAG_EAY_COMPATIBLE 0x2
|
/openssl/test/recipes/75-test_quicapi_data/ |
H A D | ssltraceref-zlib.txt | 166 Version: 3 (0x2) 167 Serial Number: 2 (0x2)
|
H A D | ssltraceref.txt | 164 Version: 3 (0x2) 165 Serial Number: 2 (0x2)
|