HomeSort by: relevance | last modified time | path
    Searched refs:Nr (Results 1 - 17 of 17) sorted by relevancy

  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
rijndael-alg-fst.h 43 int rijndaelKeySetupEnc(uint32_t rk[/*4*(Nr + 1)*/], const uint8_t cipherKey[], int keyBits);
44 int rijndaelKeySetupDec(uint32_t rk[/*4*(Nr + 1)*/], const uint8_t cipherKey[], int keyBits);
45 void rijndaelEncrypt(const uint32_t rk[/*4*(Nr + 1)*/], int Nr, const uint8_t pt[16], uint8_t ct[16]);
46 void rijndaelDecrypt(const uint32_t rk[/*4*(Nr + 1)*/], int Nr, const uint8_t ct[16], uint8_t pt[16]);
rijndael-alg-fst.c 739 int rijndaelKeySetupEnc(uint32_t rk[/*4*(Nr + 1)*/], const uint8_t cipherKey[], int keyBits) {
825 int rijndaelKeySetupDec(uint32_t rk[/*4*(Nr + 1)*/], const uint8_t cipherKey[], int keyBits) {
826 int Nr, i, j;
830 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits);
832 for (i = 0, j = 4*Nr; i < j; i += 4, j -= 4) {
839 for (i = 1; i < Nr; i++) {
862 return Nr;
865 void rijndaelEncrypt(const uint32_t rk[/*4*(Nr + 1)*/], int Nr, const uint8_t pt[16], uint8_t ct[16]) {
925 if (Nr > 10)
    [all...]
  /src/external/bsd/wpa/dist/src/crypto/
aes-internal-dec.c 30 int Nr, i, j;
34 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits);
35 if (Nr < 0)
36 return Nr;
38 for (i = 0, j = 4*Nr; i < j; i += 4, j -= 4) {
46 for (i = 1; i < Nr; i++) {
56 return Nr;
75 static void rijndaelDecrypt(const u32 rk[/*44*/], int Nr, const u8 ct[16],
109 if (Nr > 10) {
112 if (Nr > 12)
    [all...]
aes-internal-enc.c 23 static void rijndaelEncrypt(const u32 rk[], int Nr, const u8 pt[16], u8 ct[16])
56 if (Nr > 10) {
59 if (Nr > 12) {
65 rk += Nr << 2;
69 /* Nr - 1 full rounds: */
70 r = Nr >> 1;
  /src/crypto/external/apache2/openssl/dist/crypto/bn/
bn_recp.c 17 bn_init(&(recp->Nr));
28 bn_init(&(ret->Nr));
38 BN_free(&recp->Nr);
47 BN_zero(&(recp->Nr));
117 /* Nr := round(2^i / N) */
119 recp->shift = BN_reciprocal(&(recp->Nr), &(recp->N), i, ctx);
125 * d := |round(round(m / 2^BN_num_bits(N)) * recp->Nr / 2^(i - BN_num_bits(N)))|
132 if (!BN_mul(b, a, &(recp->Nr), ctx))
bn_local.h 273 BIGNUM Nr; /* the reciprocal */
  /src/crypto/external/bsd/openssl/dist/crypto/bn/
bn_recp.c 17 bn_init(&(recp->Nr));
30 bn_init(&(ret->Nr));
40 BN_free(&recp->Nr);
49 BN_zero(&(recp->Nr));
119 /* Nr := round(2^i / N) */
121 recp->shift = BN_reciprocal(&(recp->Nr), &(recp->N), i, ctx);
127 * d := |round(round(m / 2^BN_num_bits(N)) * recp->Nr / 2^(i - BN_num_bits(N)))|
134 if (!BN_mul(b, a, &(recp->Nr), ctx))
bn_local.h 275 BIGNUM Nr; /* the reciprocal */
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/
bn_recp.c 17 bn_init(&(recp->Nr));
30 bn_init(&(ret->Nr));
40 BN_free(&recp->Nr);
49 BN_zero(&(recp->Nr));
119 /* Nr := round(2^i / N) */
121 recp->shift = BN_reciprocal(&(recp->Nr), &(recp->N), i, ctx);
127 * d := |round(round(m / 2^BN_num_bits(N)) * recp->Nr / 2^(i - BN_num_bits(N)))|
134 if (!BN_mul(b, a, &(recp->Nr), ctx))
bn_local.h 268 BIGNUM Nr; /* the reciprocal */
  /src/crypto/external/bsd/openssh/dist/
rijndael.c 633 rijndaelKeySetupEnc(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits)
721 rijndaelKeySetupDec(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits)
723 int Nr, i, j;
727 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits);
730 for (i = 0, j = 4*Nr; i < j; i += 4, j -= 4) {
737 for (i = 1; i < Nr; i++) {
760 return Nr;
765 rijndaelEncrypt(const u32 rk[/*4*(Nr + 1)*/], int Nr, const u8 pt[16],
827 if (Nr > 10)
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/aria/
aria.c 426 int Nr;
434 Nr = key->rounds;
436 if (Nr != 12 && Nr != 14 && Nr != 16) {
452 while ((Nr -= 2) > 0) {
481 int Nr = (bits + 256) / 32;
491 key->rounds = Nr;
  /src/crypto/external/bsd/openssl/dist/crypto/aria/
aria.c 475 int Nr;
483 Nr = key->rounds;
485 if (Nr != 12 && Nr != 14 && Nr != 16) {
501 while(Nr -= 2){
546 int Nr = (bits + 256) / 32;
556 key->rounds = Nr;
  /src/crypto/external/bsd/openssl.old/dist/crypto/aria/
aria.c 475 int Nr;
483 Nr = key->rounds;
485 if (Nr != 12 && Nr != 14 && Nr != 16) {
501 while(Nr -= 2){
546 int Nr = (bits + 256) / 32;
556 key->rounds = Nr;
  /src/crypto/external/apache2/openssl/lib/libcrypto/arch/riscv64/
aes-riscv64-zkn.S 29 # Do Nr - 1 rounds (final round is special)
92 # Do Nr - 1 rounds (final round is special)
aes-riscv64.S 48 # Do Nr - 1 rounds (final round is special)
383 # Do Nr - 1 rounds (final round is special)
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 816 auto Nr = Vs.traverse(Range, Vs.typeCtx(Ctx));
818 return Vs.reduceField(*this, Nr, Nb);
946 auto Nr = Vs.traverse(Rec, Vs.subExprCtx(Ctx));
947 return Vs.reduceProject(*this, Nr);

Completed in 35 milliseconds