OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BN_FLG_CONSTTIME
(Results
1 - 9
of
9
) sorted by null
/external/boringssl/src/crypto/rsa/
rsa_impl.c
579
BN_with_flags(d, rsa->d,
BN_FLG_CONSTTIME
);
639
*
BN_FLG_CONSTTIME
flag. */
642
BN_with_flags(p, rsa->p,
BN_FLG_CONSTTIME
);
646
BN_with_flags(q, rsa->q,
BN_FLG_CONSTTIME
);
666
BN_with_flags(c, I,
BN_FLG_CONSTTIME
);
673
BN_with_flags(dmq1, rsa->dmq1,
BN_FLG_CONSTTIME
);
680
BN_with_flags(c, I,
BN_FLG_CONSTTIME
);
687
BN_with_flags(dmp1, rsa->dmp1,
BN_FLG_CONSTTIME
);
707
/* Turn
BN_FLG_CONSTTIME
flag on before division operation */
709
BN_with_flags(pr1, r1,
BN_FLG_CONSTTIME
);
[
all
...]
blinding.c
164
if (BN_get_flags(mod,
BN_FLG_CONSTTIME
) != 0) {
165
BN_set_flags(ret->mod,
BN_FLG_CONSTTIME
);
436
BN_with_flags(n, rsa->n,
BN_FLG_CONSTTIME
);
/external/boringssl/src/crypto/bn/
gcd.c
236
if ((a->flags &
BN_FLG_CONSTTIME
) != 0 ||
237
(n->flags &
BN_FLG_CONSTTIME
) != 0) {
589
/* Turn
BN_FLG_CONSTTIME
flag on, so that when BN_div is invoked,
593
BN_with_flags(pB, B,
BN_FLG_CONSTTIME
);
615
/* Turn
BN_FLG_CONSTTIME
flag on, so that when BN_div is invoked,
619
BN_with_flags(pA, A,
BN_FLG_CONSTTIME
);
div.c
132
if ((num->flags &
BN_FLG_CONSTTIME
) != 0 ||
133
(divisor->flags &
BN_FLG_CONSTTIME
) != 0) {
exponentiation.c
143
if ((p->flags &
BN_FLG_CONSTTIME
) != 0) {
144
/*
BN_FLG_CONSTTIME
only supported by BN_mod_exp_mont() */
439
if (BN_get_flags(p,
BN_FLG_CONSTTIME
) != 0) {
440
/*
BN_FLG_CONSTTIME
only supported by BN_mod_exp_mont() */
608
if (a->top == 1 && !a->neg && BN_get_flags(p,
BN_FLG_CONSTTIME
) == 0) {
629
if (BN_get_flags(p,
BN_FLG_CONSTTIME
) != 0) {
[
all
...]
/external/boringssl/src/crypto/dh/
dh.c
295
BN_with_flags(&local_priv, priv_key,
BN_FLG_CONSTTIME
);
358
BN_with_flags(&local_priv, dh->priv_key,
BN_FLG_CONSTTIME
);
/external/boringssl/src/crypto/ecdsa/
ecdsa.c
328
BN_set_flags(X,
BN_FLG_CONSTTIME
);
/external/boringssl/src/crypto/dsa/
dsa.c
430
BN_with_flags(&prk, priv_key,
BN_FLG_CONSTTIME
);
798
BN_set_flags(&k,
BN_FLG_CONSTTIME
);
/external/boringssl/src/include/openssl/
bn.h
710
* have |
BN_FLG_CONSTTIME
| set then the operation is performed in constan
[
all
...]
Completed in 339 milliseconds