Home
last modified time | relevance | path

Searched refs:Ai (Results 1 – 17 of 17) sorted by relevance

/freebsd/crypto/openssl/crypto/bn/
H A Dbn_blind.c18 BIGNUM *Ai; member
30 BN_BLINDING *BN_BLINDING_new(const BIGNUM *A, const BIGNUM *Ai, BIGNUM *mod) in BN_BLINDING_new() argument
53 if (Ai != NULL) { in BN_BLINDING_new()
54 if ((ret->Ai = BN_dup(Ai)) == NULL) in BN_BLINDING_new()
84 BN_free(r->Ai); in BN_BLINDING_free()
95 if ((b->A == NULL) || (b->Ai == NULL)) { in BN_BLINDING_update()
109 if (!bn_mul_mont_fixed_top(b->Ai, b->Ai, b->Ai, b->m_ctx, ctx) in BN_BLINDING_update()
113 if (!BN_mod_mul(b->Ai, b->Ai, b->Ai, b->mod, ctx) in BN_BLINDING_update()
137 if ((b->A == NULL) || (b->Ai == NULL)) { in BN_BLINDING_convert_ex()
148 if (r != NULL && (BN_copy(r, b->Ai) == NULL)) in BN_BLINDING_convert_ex()
[all …]
/freebsd/crypto/openssl/providers/implementations/kdfs/
H A Dpkcs12kdf.c54 unsigned char *B = NULL, *D = NULL, *I = NULL, *p = NULL, *Ai = NULL; in pkcs12kdf_derive() local
75 Ai = OPENSSL_malloc(u); in pkcs12kdf_derive()
84 if (D == NULL || Ai == NULL || B == NULL || I == NULL) in pkcs12kdf_derive()
97 || !EVP_DigestFinal_ex(ctx, Ai, NULL)) in pkcs12kdf_derive()
101 || !EVP_DigestUpdate(ctx, Ai, u) in pkcs12kdf_derive()
102 || !EVP_DigestFinal_ex(ctx, Ai, NULL)) in pkcs12kdf_derive()
105 memcpy(out, Ai, n < u ? n : u); in pkcs12kdf_derive()
113 B[j] = Ai[j % u]; in pkcs12kdf_derive()
129 OPENSSL_free(Ai); in pkcs12kdf_derive()
H A Dtls1_prf.c472 unsigned char Ai[EVP_MAX_MD_SIZE]; in tls1_prf_P_hash() local
490 if (!EVP_MAC_final(ctx_Ai, Ai, &Ai_len, sizeof(Ai))) in tls1_prf_P_hash()
499 if (!EVP_MAC_update(ctx, Ai, Ai_len)) in tls1_prf_P_hash()
511 if (!EVP_MAC_final(ctx, Ai, &Ai_len, sizeof(Ai))) in tls1_prf_P_hash()
513 memcpy(out, Ai, olen); in tls1_prf_P_hash()
527 OPENSSL_cleanse(Ai, sizeof(Ai)); in tls1_prf_P_hash()
/freebsd/crypto/openssl/crypto/sha/
H A Dkeccak1600.c981 static uint64_t BitInterleave(uint64_t Ai) in BitInterleave() argument
984 uint32_t hi = (uint32_t)(Ai >> 32), lo = (uint32_t)Ai; in BitInterleave()
1027 Ai = ((uint64_t)(hi | lo) << 32) | (t1 | t0); in BitInterleave()
1030 return Ai; in BitInterleave()
1033 static uint64_t BitDeinterleave(uint64_t Ai) in BitDeinterleave() argument
1036 uint32_t hi = (uint32_t)(Ai >> 32), lo = (uint32_t)Ai; in BitDeinterleave()
1079 Ai = ((uint64_t)(hi | lo) << 32) | (t1 | t0); in BitDeinterleave()
1082 return Ai; in BitDeinterleave()
1105 …uint64_t Ai = (uint64_t)inp[0] | (uint64_t)inp[1] << 8 | (uint64_t)inp[2] << 16 | (uint64_t)inp[3]… in SHA3_absorb() local
1108 A_flat[i] ^= BitInterleave(Ai); in SHA3_absorb()
[all …]
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_core/ed25519/ref10/
H A Ded25519_ref10.c668 ge25519_cached Ai[8]; /* A,3A,5A,7A,9A,11A,13A,15A */ in ge25519_double_scalarmult_vartime() local
677 ge25519_p3_to_cached(&Ai[0], A); in ge25519_double_scalarmult_vartime()
682 ge25519_add(&t, &A2, &Ai[0]); in ge25519_double_scalarmult_vartime()
684 ge25519_p3_to_cached(&Ai[1], &u); in ge25519_double_scalarmult_vartime()
686 ge25519_add(&t, &A2, &Ai[1]); in ge25519_double_scalarmult_vartime()
688 ge25519_p3_to_cached(&Ai[2], &u); in ge25519_double_scalarmult_vartime()
690 ge25519_add(&t, &A2, &Ai[2]); in ge25519_double_scalarmult_vartime()
692 ge25519_p3_to_cached(&Ai[3], &u); in ge25519_double_scalarmult_vartime()
694 ge25519_add(&t, &A2, &Ai[3]); in ge25519_double_scalarmult_vartime()
696 ge25519_p3_to_cached(&Ai[4], &u); in ge25519_double_scalarmult_vartime()
[all …]
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_sign/ed25519/ref10/
H A Dobsolete.c78 ge25519_cached Ai; in crypto_sign_edwards25519sha512batch_open() local
99 ge25519_p3_to_cached(&Ai, &A); in crypto_sign_edwards25519sha512batch_open()
103 ge25519_add(&csa, &cs3, &Ai); in crypto_sign_edwards25519sha512batch_open()
/freebsd/crypto/openssl/doc/man3/
H A DBN_BLINDING_new.pod15 BN_BLINDING *BN_BLINDING_new(const BIGNUM *A, const BIGNUM *Ai,
44 the B<A> and B<Ai> values into the newly created B<BN_BLINDING> object.
50 the B<A> and B<Ai> or, after specific number of uses and if the
54 If B<r> is not NULL a copy the inverse blinding factor B<Ai> will be
57 inverse blinding factor B<Ai>. If B<r> is not NULL it will be used as
/freebsd/crypto/krb5/src/plugins/preauth/spake/
H A Dedwards25519.c985 ge_cached Ai[16]; in x25519_ge_scalarmult() local
988 ge_cached_0(&Ai[0]); in x25519_ge_scalarmult()
989 x25519_ge_p3_to_cached(&Ai[1], A); in x25519_ge_scalarmult()
995 ge_p1p1_to_cached(&Ai[i], &t); in x25519_ge_scalarmult()
999 x25519_ge_add(&t, A, &Ai[i]); in x25519_ge_scalarmult()
1000 ge_p1p1_to_cached(&Ai[i + 1], &t); in x25519_ge_scalarmult()
1027 cmov_cached(&selected, &Ai[j], equal(j, index)); in x25519_ge_scalarmult()
/freebsd/crypto/openssl/crypto/ec/
H A Dcurve25519.c4697 ge_cached Ai[8]; /* A,3A,5A,7A,9A,11A,13A,15A */ in ge_double_scalarmult_vartime() local
4706 ge_p3_to_cached(&Ai[0], A); in ge_double_scalarmult_vartime()
4709 ge_add(&t, &A2, &Ai[0]); in ge_double_scalarmult_vartime()
4711 ge_p3_to_cached(&Ai[1], &u); in ge_double_scalarmult_vartime()
4712 ge_add(&t, &A2, &Ai[1]); in ge_double_scalarmult_vartime()
4714 ge_p3_to_cached(&Ai[2], &u); in ge_double_scalarmult_vartime()
4715 ge_add(&t, &A2, &Ai[2]); in ge_double_scalarmult_vartime()
4717 ge_p3_to_cached(&Ai[3], &u); in ge_double_scalarmult_vartime()
4718 ge_add(&t, &A2, &Ai[3]); in ge_double_scalarmult_vartime()
4720 ge_p3_to_cached(&Ai[4], &u); in ge_double_scalarmult_vartime()
[all …]
/freebsd/contrib/mandoc/
H A Dpredefs.in55 PREDEF("Ai", "ANSI")
/freebsd/crypto/openssl/include/openssl/
H A Dbn.h424 BN_BLINDING *BN_BLINDING_new(const BIGNUM *A, const BIGNUM *Ai, BIGNUM *mod);
/freebsd/contrib/file/magic/Magdir/
H A Darchive1271 # Ai
1274 0 string Ai\1\1\0 Ai archive data
1278 0 string Ai\1\0\0 Ai archive data
1284 # Note: called "Ai Archivator compressed archive" by TrID
1285 0 string Ai\2\0 Ai32 archive data
1297 0 string Ai\2\1 Ai32 archive data
/freebsd/contrib/tcsh/
H A Dcomplete.tcsh1167 complete elm 'n/-[Ai]/f/' 'c@=@F:$HOME/Mail/@' 'n/-s/x:\<subject\>/'
/freebsd/contrib/one-true-awk/testdir/
H A Dfunstack.in4538 bibsource = "ftp://ftp.ira.uka.de/pub/bibliography/Ai/lisp.bib",
5384 bibsource = "ftp://ftp.ira.uka.de/pub/bibliography/Ai/Ai.misc.bib",
7432 bibsource = "ftp://ftp.ira.uka.de/pub/bibliography/Ai/lisp.bib",
8321 bibsource = "Compendex database; ftp://ftp.ira.uka.de/pub/bibliography/Ai/lisp.bib",
9306 bibsource = "Compendex database; ftp://ftp.ira.uka.de/pub/bibliography/Ai/colt.bib",
11947 bibsource = "Compendex database; ftp://ftp.ira.uka.de/pub/bibliography/Ai/nonmono.bib",
15559 bibsource = "Compendex database; ftp://ftp.ira.uka.de/pub/bibliography/Ai/nonmono.bib",
16838 bibsource = "Compendex database; ftp://ftp.ira.uka.de/pub/bibliography/Ai/expert.bib",
18628 …ibliography/Database/Graefe.bib and ftp://ftp.ira.uka.de/pub/bibliography/Ai/Ai.misc.bib and ftp:/…
22114 bibsource = "ftp://ftp.ira.uka.de/pub/bibliography/Ai/lisp.bib",
[all …]
H A Dbib5979 …o to Ai, which is beside Bethaven, on the east of Bethel, and spake unto them, saying, Go up and v…
5980 … the people go up; but let about two or three thousand men go up and smite Ai; and make not all th…
5981 So there went up thither of the people about three thousand men: and they fled before the men of Ai.
5982 And the men of Ai smote of them about thirty and six men: for they chased them from before the gate…
6004 …l the people of war with thee, and arise, go up to Ai: see, I have given into thy hand the king of…
6005 And thou shalt do to Ai and her king as thou didst unto Jericho and her king: only the spoil thereo…
6006 So Joshua arose, and all the people of war, to go up against Ai: and Joshua chose out thirty thousa…
6012 …: and they went to lie in ambush, and abode between Bethel and Ai, on the west side of Ai: but Jos…
6013 …orning, and numbered the people, and went up, he and the elders of Israel, before the people to Ai.
6014 …me before the city, and pitched on the north side of Ai: now there was a valley between them and A…
[all …]
/freebsd/contrib/ncurses/misc/
H A Dterminfo.src10182 # :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\
10201 kf38=^Af\r, kf39=^Ag\r, kf4=^AC\r, kf40=^Ah\r, kf41=^Ai\r,
10211 # :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\
10224 # :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\
10243 kf38=^Af\r, kf39=^Ag\r, kf4=^AC\r, kf40=^Ah\r, kf41=^Ai\r,
11930 kf19=^Ag\r, kf2=^AA\r, kf20=^Ah\r, kf21=^Ai\r, kf22=^Aj\r,
12341 tsl=\Eg\Ef, kF1=^A`\r, kF10=^Ai\r, kF11=^Aj\r, kF2=^Aa\r,
12782 smso=\E`6\E), tbc=\E0, kF1=^A`\r, kF10=^Ai\r, kF11=^Aj\r,
13016 tbc=\E0, kF1=^A`\r, kF10=^Ai\r, kF11=^Aj\r, kF12=^Ak\r,
13180 kf20=^Ag\r, kf21=^Ah\r, kf22=^Ai\r, kf23=^Aj\r, kf24=^Ak\r,
[all …]
/freebsd/share/termcap/
H A Dtermcap4067 :l6=^Ae^M:l7=^Af^M:l8=^Ag^M:l9=^Ah^M:l0=^Ai^M: