Home
last modified time | relevance | path

Searched refs:Y (Results 1 – 25 of 53) sorted by relevance

123

/openssl/crypto/chacha/asm/
H A Dchacha-c64xplus.pl162 || ADD @Y[$b1],@Y[$a1],@Y[$a1]
163 || ADD @Y[$b2],@Y[$a2],@Y[$a2]
164 ADD @Y[$b0],@Y[$a0],@Y[$a0]
165 || ADD @Y[$b3],@Y[$a3],@Y[$a3]
171 XOR @Y[$a0],@Y[$d0],@Y[$d0]
234 XOR @Y[$a0],@Y[$d0],@Y[$d0]
250 ADD @Y[$d1],@Y[$c1],@Y[$c1]
256 ADD @Y[$d0],@Y[$c0],@Y[$c0]
262 XOR @Y[$c0],@Y[$b0],@Y[$b0]
278 ADD @Y[$b2],@Y[$a2],@Y[$a2]
[all …]
/openssl/crypto/bn/
H A Dbn_gcd.c53 BN_zero(Y); in bn_mod_inverse_no_branch()
149 Y = X; in bn_mod_inverse_no_branch()
163 if (!BN_sub(Y, n, Y)) in bn_mod_inverse_no_branch()
170 if (!Y->neg && BN_ucmp(Y, n) < 0) { in bn_mod_inverse_no_branch()
242 BN_zero(Y); in int_bn_mod_inverse()
310 if (!BN_uadd(Y, Y, n)) in int_bn_mod_inverse()
314 if (!BN_rshift1(Y, Y)) in int_bn_mod_inverse()
346 if (!BN_uadd(Y, Y, X)) in int_bn_mod_inverse()
473 Y = X; in int_bn_mod_inverse()
488 if (!BN_sub(Y, n, Y)) in int_bn_mod_inverse()
[all …]
H A Dbn_rsa_fips186_4.c275 int ossl_bn_rsa_fips186_4_derive_prime(BIGNUM *Y, BIGNUM *X, const BIGNUM *Xin, in ossl_bn_rsa_fips186_4_derive_prime() argument
363 if (!BN_mod_sub(Y, R, X, r1r2x2, ctx) || !BN_add(Y, Y, X)) in ossl_bn_rsa_fips186_4_derive_prime()
369 if (BN_num_bits(Y) > bits) { in ossl_bn_rsa_fips186_4_derive_prime()
378 if (BN_copy(y1, Y) == NULL in ossl_bn_rsa_fips186_4_derive_prime()
383 int rv = ossl_bn_check_generated_prime(Y, rounds, ctx, cb); in ossl_bn_rsa_fips186_4_derive_prime()
395 if (!BN_add(Y, Y, r1r2x2)) in ossl_bn_rsa_fips186_4_derive_prime()
/openssl/crypto/ec/
H A Decp_sm2p256.c132 is_equal(a->Y, b->Y) && \
208 ecp_sm2p256_add(R->Y, P->Y, P->Y); in ecp_sm2p256_point_double()
210 ecp_sm2p256_sqr(R->Y, R->Y); in ecp_sm2p256_point_double()
212 ecp_sm2p256_sqr(R->Y, R->Y); in ecp_sm2p256_point_double()
213 ecp_sm2p256_div_by_2(R->Y, R->Y); in ecp_sm2p256_point_double()
237 R->Y[i] = Q->Y[i]; in ecp_sm2p256_point_add_affine()
259 K.Y[i] = Q->Y[i]; in ecp_sm2p256_point_add_affine()
299 R->Y[i] = Q->Y[i]; in ecp_sm2p256_point_add()
307 R->Y[i] = P->Y[i]; in ecp_sm2p256_point_add()
322 ecp_sm2p256_mul(R->Y, P->Y, Q->Z); in ecp_sm2p256_point_add()
[all …]
H A Dec2_smpl.c225 point->Y = BN_new(); in ossl_ec_GF2m_simple_point_init()
230 BN_free(point->Y); in ossl_ec_GF2m_simple_point_init()
241 BN_free(point->Y); in ossl_ec_GF2m_simple_point_finish()
262 if (!BN_copy(dest->Y, src->Y)) in ossl_ec_GF2m_simple_point_copy()
493 return BN_GF2m_add(point->Y, point->X, point->Y); in ossl_ec_GF2m_simple_invert()
598 return ((BN_cmp(a->X, b->X) == 0) && BN_cmp(a->Y, b->Y) == 0) ? 0 : 1; in ossl_ec_GF2m_simple_cmp()
755 && !group->meth->field_encode(group, r->Y, r->Y, ctx)) in ec_GF2m_simple_ladder_pre()
790 || !group->meth->field_sqr(group, s->Y, s->Y, ctx) in ec_GF2m_simple_ladder_step()
791 || !group->meth->field_mul(group, s->Y, s->Y, group->b, ctx) in ec_GF2m_simple_ladder_step()
792 || !BN_GF2m_add(r->X, r->Y, s->Y)) in ec_GF2m_simple_ladder_step()
[all …]
H A Decp_nistz256.c47 BN_ULONG Y[P256_LIMBS]; member
672 || !ecp_nistz256_bignum_to_field_elem(temp[0].Y, point[i]->Y) in ecp_nistz256_windowed_mul()
740 ecp_nistz256_neg(temp[1].Y, temp[0].Y); in ecp_nistz256_windowed_mul()
741 copy_conditional(temp[0].Y, temp[1].Y, (wvalue & 1)); in ecp_nistz256_windowed_mul()
764 ecp_nistz256_neg(temp[1].Y, temp[0].Y); in ecp_nistz256_windowed_mul()
765 copy_conditional(temp[0].Y, temp[1].Y, wvalue & 1); in ecp_nistz256_windowed_mul()
890 !ecp_nistz256_bignum_to_field_elem(temp.Y, P->Y)) { in ecp_nistz256_mult_precompute()
931 && (ret = bn_set_words(out->Y, in->Y, P256_LIMBS)) in ecp_nistz256_set_from_affine()
1065 p.p.Y[0] | p.p.Y[1] | p.p.Y[2] | p.p.Y[3]); in ecp_nistz256_points_mul()
1068 p.p.Y[4] | p.p.Y[5] | p.p.Y[6] | p.p.Y[7]); in ecp_nistz256_points_mul()
[all …]
H A Decp_nistputil.c83 #define Y(I) (&((char *)point_array)[(3*(I) + 1) * felem_size]) in ossl_ec_GFp_nistp_points_make_affine_internal() macro
126 felem_mul(Y(i), Y(i), Z(i)); /* Y/(Z^3) */ in ossl_ec_GFp_nistp_points_make_affine_internal()
128 felem_contract(Y(i), Y(i)); in ossl_ec_GFp_nistp_points_make_affine_internal()
H A Decp_smpl.c325 point->Y = BN_new(); in ossl_ec_GFp_simple_point_init()
341 BN_free(point->Y); in ossl_ec_GFp_simple_point_finish()
357 if (!BN_copy(dest->Y, src->Y)) in ossl_ec_GFp_simple_point_copy()
404 if (!group->meth->field_encode(group, point->Y, point->Y, ctx)) in ossl_ec_GFp_simple_set_Jprojective_coordinates_GFp()
947 return BN_usub(point->Y, group->field, point->Y); in ossl_ec_GFp_simple_invert()
1142 tmp1_ = a->Y; in ossl_ec_GFp_simple_cmp()
1150 tmp2_ = b->Y; in ossl_ec_GFp_simple_cmp()
1335 if (!group->meth->field_mul(group, p->Y, p->Y, tmp, ctx)) in ossl_ec_GFp_simple_points_make_affine()
1467 || !group->meth->field_mul(group, p->Y, p->Y, temp, ctx)) in ossl_ec_GFp_simple_blind_coordinates()
1503 t5 = s->Y; in ossl_ec_GFp_simple_ladder_pre()
[all …]
H A Dcurve25519.c1932 fe_copy(r->Y, p->Y); in ge_p3_to_p2()
1954 fe_mul(r->Y, p->Y, p->Z); in ge_p1p1_to_p2()
1962 fe_mul(r->Y, p->Y, p->Z); in ge_p1p1_to_p3()
1975 fe_add(r->Y, p->X, p->Y); in ge_p2_dbl()
1997 fe_sub(r->Y, p->Y, p->X); in ge_madd()
2003 fe_add(r->Y, r->Z, r->Y); in ge_madd()
2014 fe_sub(r->Y, p->Y, p->X); in ge_msub()
2020 fe_add(r->Y, r->Z, r->Y); in ge_msub()
2031 fe_sub(r->Y, p->Y, p->X); in ge_add()
2038 fe_add(r->Y, r->Z, r->Y); in ge_add()
[all …]
H A Dec_mult.c106 BN_set_flags((P)->Y, (flags)); \
251 || (bn_wexpand(s->Y, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
254 || (bn_wexpand(r->Y, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
257 || (bn_wexpand(p->Y, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
281 BN_consttime_swap(c, (a)->Y, (b)->Y, w); \ in ossl_ec_scalar_mul_ladder()
/openssl/test/recipes/04-test_pem_reading_data/
H A Dcert-onecolumn.pem24 Y
52 Y
54 Y
118 Y
134 Y
158 Y
162 Y
214 Y
218 Y
236 Y
[all …]
H A Ddsa-onecolumn.pem207 Y
216 Y
224 Y
254 Y
351 Y
406 Y
514 Y
620 Y
828 Y
899 Y
[all …]
/openssl/crypto/sm3/
H A Dsm3_local.h84 #define FF0(X,Y,Z) (X ^ Y ^ Z) argument
85 #define GG0(X,Y,Z) (X ^ Y ^ Z) argument
87 #define FF1(X,Y,Z) ((X & Y) | ((X | Y) & Z)) argument
88 #define GG1(X,Y,Z) ((Z ^ (X & (Y ^ Z)))) argument
/openssl/test/
H A Dsmcont.bin11Y���A�j��T~@5�0����yQ!�bdO�l�ר�b �E��6W�_ҹk��!��&�Jâ����7��M�y3� �lDw���t�ןL��2ʰ�D ��dN�ۂ�O�`…
21 …l������A� w�hˡAgP�}�U{#�4M}�����I��x3C�h�e�B>�F�4-b�$2AX�H]{ �"�b�悶Nj�Y���^��1"'h����Կ�Vn̢�…
22YKnl �$��s������s����9w�a �#L._�R�����C 6����̸��W����m�߻��D�����gL��J��DGs����I��c��z��`
23Y:Œ�<��qT co�+8���q�e z}�f�U�CfK2`�Z,m3 ��B@�B4��B�Z b�Tu>�rƶ����ץ�58B �\�@�� L= ���b��Lj…
26 …|�7��D��r�����ݚ=7��_��8�Mo�χ�����~��C �x/�����g�ġ�|i�8��� 4w�'��ːY���)��W��<��d��;�i�…
32 …�8��4 ���xq�fBӥ�!��ʆ0i+�Xp��|�(=��J���X ���&�{>pNU�;<4���NNհ%���-d Y����7�"�ܓ����� �\�#…
33 …<�OϤ�y��dw�W,�)��C����2�r��nj ��M�7 �q���d��1� #��(~X<c��i�w��Is����Y������c�]�xB/κ�U��"…
/openssl/test/recipes/
H A D25-test_x509.t447 my %today = (strftime("%Y-%m-%d", gmtime) => 1);
455 && ++$today{strftime("%Y-%m-%d", gmtime)}
467 %today = (strftime("%Y-%m-%d", gmtime) => 1);
468 $enddate = strftime("%Y-%m-%d", gmtime(time + 99 * 24 * 60 * 60));
474 && ++$today{strftime("%Y-%m-%d", gmtime)}
484 %today = (strftime("%Y-%m-%d", gmtime) => 1);
485 $enddate = strftime("%Y-%m-%d", gmtime(time + 30 * 24 * 60 * 60));
489 && ++$today{strftime("%Y-%m-%d", gmtime)}
H A Dtconversion.pl207 "%b %d %T %Y %Z")->date;
218 "%b %d %T %Y %Z")->date;
/openssl/crypto/aria/
H A Daria.c39 #define GET_U8_BE(X, Y) ((uint8_t)((X) >> ((3 - Y) * 8))) argument
442 #define _ARIA_GSRK(RK, X, Y, Q, R) \ argument
446 (((Y)[((Q) ) % 4]) >> (R)) ^ \
447 (((Y)[((Q) + 3) % 4]) << (32 - (R))); \
450 (((Y)[((Q) + 1) % 4]) >> (R)) ^ \
451 (((Y)[((Q) ) % 4]) << (32 - (R))); \
454 (((Y)[((Q) + 2) % 4]) >> (R)) ^ \
455 (((Y)[((Q) + 1) % 4]) << (32 - (R))); \
458 (((Y)[((Q) + 3) % 4]) >> (R)) ^ \
459 (((Y)[((Q) + 2) % 4]) << (32 - (R))); \
[all …]
/openssl/external/perl/Text-Template-1.56/t/
H A Dbasic.t15 $X::v = $Y::v = 0; # Suppress `var used only once'
49 $Y::v = "ABC";
/openssl/test/certs/
H A Dserver-ecdsa-cert.pem14 Y/JiO6weK/VTlqCLn7zV9LcDT4gU18UCn85UV1XlVYKXZlaXYQ==
H A Dca-name2.pem5 3Y/SMbKIFczEhixc4mmLhPSno1PfkeO/UYn78HwQDTutrDVidfV///RuVI8FppIj
H A Droot-cert2.pem17 Y/jZkfB8+3DRBA8U4/rDqJF6gj90vrugxg1Pr3abAp7/7WUv/oh1Qo/UXCbVK7Mj
/openssl/test/recipes/15-test_dsaparam_data/valid/
H A Dp3072_q256_t1862.pem17 I8nsqn7rnMZ+ROPafj/QHuQZrrE9qq8PN4OuuZXCn6JrG/9goATXjsX0dwkSW+/Y
/openssl/test/ocsp-tests/
H A DISDOSC_D2.ors32 fBIRKjnK621vAWvc7UR+0hqnZ+Y=
/openssl/test/recipes/80-test_cmp_http_data/Mock/
H A Dnew.RSA2048.key10 +KwEYhygPka9Dh3CVzuCweIdndubnaBg8FbjDJT4Wwr86lpKXKWvGNqzjj8x9C1+Y
/openssl/util/
H A Dcheck-format-test-positives.c55 #define Y 1 /*@ extra space before body, reported unless sloppy-spc */ \

Completed in 74 milliseconds

123