| /freebsd/sys/crypto/openssl/ |
| H A D | ossl_sha512.c | 42 c->Nl = 0; in ossl_sha384_init() 61 c->Nl = 0; in ossl_sha512_init() 85 c->u.d[SHA_LBLOCK - 1] = c->Nl; in ossl_sha512_final() 87 p[sizeof(c->u) - 1] = (unsigned char)(c->Nl); in ossl_sha512_final() 88 p[sizeof(c->u) - 2] = (unsigned char)(c->Nl >> 8); in ossl_sha512_final() 89 p[sizeof(c->u) - 3] = (unsigned char)(c->Nl >> 16); in ossl_sha512_final() 90 p[sizeof(c->u) - 4] = (unsigned char)(c->Nl >> 24); in ossl_sha512_final() 91 p[sizeof(c->u) - 5] = (unsigned char)(c->Nl >> 32); in ossl_sha512_final() 92 p[sizeof(c->u) - 6] = (unsigned char)(c->Nl >> 40); in ossl_sha512_final() 93 p[sizeof(c->u) - 7] = (unsigned char)(c->Nl >> 48); in ossl_sha512_final() [all …]
|
| H A D | ossl_hash.h | 59 l = (c->Nl + (((HASH_LONG) len) << 3)) & 0xffffffffUL; in HASH_UPDATE() 60 if (l < c->Nl) /* overflow */ in HASH_UPDATE() 64 c->Nl = l; in HASH_UPDATE() 127 (void)HOST_l2c(c->Nl, p); in HASH_FINAL() 129 (void)HOST_l2c(c->Nl, p); in HASH_FINAL()
|
| H A D | ossl_sha.h | 30 SHA_LONG Nl, Nh; member 41 SHA_LONG Nl, Nh; member 58 SHA_LONG64 Nl, Nh; member
|
| /freebsd/crypto/openssl/include/crypto/ |
| H A D | md32_common.h | 163 l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL; in HASH_UPDATE() 164 if (l < c->Nl) /* overflow */ in HASH_UPDATE() 168 c->Nl = l; in HASH_UPDATE() 234 (void)HOST_l2c(c->Nl, p); in HASH_FINAL() 236 (void)HOST_l2c(c->Nl, p); in HASH_FINAL()
|
| /freebsd/crypto/openssl/providers/implementations/ciphers/ |
| H A D | cipher_rc4_hmac_md5_hw.c | 86 ctx->md.Nl += blocks <<= 3; in cipher_hw_rc4_hmac_md5_cipher() 87 if (ctx->md.Nl < (unsigned int)blocks) in cipher_hw_rc4_hmac_md5_cipher() 131 l = (ctx->md.Nl + (blocks << 3)) & 0xffffffffU; in cipher_hw_rc4_hmac_md5_cipher() 132 if (l < ctx->md.Nl) in cipher_hw_rc4_hmac_md5_cipher() 134 ctx->md.Nl = l; in cipher_hw_rc4_hmac_md5_cipher()
|
| H A D | cipher_aes_cbc_hmac_sha1_hw.c | 91 c->Nl += len <<= 3; in sha1_update() 92 if (c->Nl < (unsigned int)len) in sha1_update() 407 sctx->md.Nl += blocks <<= 3; in aesni_cbc_hmac_sha1_cipher() 408 if (sctx->md.Nl < (unsigned int)blocks) in aesni_cbc_hmac_sha1_cipher() 509 bitlen = sctx->md.Nl + (inp_len << 3); /* at most 18 bits */ in aesni_cbc_hmac_sha1_cipher()
|
| H A D | cipher_aes_cbc_hmac_sha256_hw.c | 95 c->Nl += len <<= 3; in sha256_update() 96 if (c->Nl < (unsigned int)len) in sha256_update() 445 sctx->md.Nl += blocks <<= 3; in aesni_cbc_hmac_sha256_cipher() 446 if (sctx->md.Nl < (unsigned int)blocks) in aesni_cbc_hmac_sha256_cipher() 545 bitlen = sctx->md.Nl + (inp_len << 3); /* at most 18 bits */ in aesni_cbc_hmac_sha256_cipher()
|
| /freebsd/crypto/openssl/crypto/evp/ |
| H A D | e_rc4_hmac_md5.c | 107 key->md.Nl += blocks <<= 3; in rc4_hmac_md5_cipher() 108 if (key->md.Nl < (unsigned int)blocks) in rc4_hmac_md5_cipher() 149 l = (key->md.Nl + (blocks << 3)) & 0xffffffffU; in rc4_hmac_md5_cipher() 150 if (l < key->md.Nl) in rc4_hmac_md5_cipher() 152 key->md.Nl = l; in rc4_hmac_md5_cipher()
|
| H A D | e_aes_cbc_hmac_sha1.c | 124 c->Nl += len <<= 3; in sha1_update() 125 if (c->Nl < (unsigned int)len) in sha1_update() 444 key->md.Nl += blocks <<= 3; in aesni_cbc_hmac_sha1_cipher() 445 if (key->md.Nl < (unsigned int)blocks) in aesni_cbc_hmac_sha1_cipher() 575 key->md.Nl += (blocks << 3); /* at most 18 bits */ in aesni_cbc_hmac_sha1_cipher() 592 bitlen = key->md.Nl + (inp_len << 3); /* at most 18 bits */ in aesni_cbc_hmac_sha1_cipher() 753 key->md.Nl += blocks <<= 3; in aesni_cbc_hmac_sha1_cipher() 754 if (key->md.Nl < (unsigned int)blocks) in aesni_cbc_hmac_sha1_cipher()
|
| H A D | e_aes_cbc_hmac_sha256.c | 118 c->Nl += len <<= 3; in sha256_update() 119 if (c->Nl < (unsigned int)len) in sha256_update() 472 key->md.Nl += blocks <<= 3; in aesni_cbc_hmac_sha256_cipher() 473 if (key->md.Nl < (unsigned int)blocks) in aesni_cbc_hmac_sha256_cipher() 573 bitlen = key->md.Nl + (inp_len << 3); /* at most 18 bits */ in aesni_cbc_hmac_sha256_cipher()
|
| /freebsd/lib/libmd/ |
| H A D | sha1c.c | 66 c->Nl = 0; in SHA1_Init() 77 nn = (uint64_t)c->Nl | (uint64_t)c->Nh << 32; in SHA1_Update() 79 c->Nl = (uint32_t)nn; in SHA1_Update() 120 len = (uint64_t)c->Nl | (uint64_t)c->Nh << 32; in SHA1_Final() 121 t = 64 + 56 - c->Nl % 64; in SHA1_Final()
|
| H A D | sha0c.c | 109 c->Nl=0; in SHA_Init() 123 l=(c->Nl+(len<<3))&0xffffffffL; in SHA_Update() 124 if (l < c->Nl) /* overflow */ in SHA_Update() 127 c->Nl=l; in SHA_Update() 426 p[SHA_LBLOCK-1]=c->Nl; in SHA_Final()
|
| H A D | ripemd.h | 76 u_int32_t Nl,Nh; member
|
| H A D | sha.h | 72 u_int32_t Nl, Nh; member
|
| H A D | rmd160c.c | 95 c->Nl=0; in RIPEMD160_Init() 109 l=(c->Nl+(len<<3))&0xffffffffL; in RIPEMD160_Update() 110 if (l < c->Nl) /* overflow */ in RIPEMD160_Update() 113 c->Nl=l; in RIPEMD160_Update() 502 p[RIPEMD160_LBLOCK-2]=c->Nl; in RIPEMD160_Final()
|
| /freebsd/crypto/openssl/include/openssl/ |
| H A D | sha.h | 44 SHA_LONG Nl, Nh; member 64 SHA_LONG Nl, Nh; member 112 SHA_LONG64 Nl, Nh; member
|
| H A D | md5.h | 43 MD5_LONG Nl, Nh; member
|
| H A D | md4.h | 44 MD4_LONG Nl, Nh; member
|
| H A D | ripemd.h | 39 RIPEMD160_LONG Nl, Nh; member
|
| /freebsd/crypto/openssl/crypto/sha/ |
| H A D | sha512.c | 85 c->Nl = 0; in sha512_224_init() 103 c->Nl = 0; in sha512_256_init() 121 c->Nl = 0; in SHA384_Init() 139 c->Nl = 0; in SHA512_Init() 171 c->u.d[SHA_LBLOCK - 1] = c->Nl; in SHA512_Final() 173 p[sizeof(c->u) - 1] = (unsigned char)(c->Nl); in SHA512_Final() 174 p[sizeof(c->u) - 2] = (unsigned char)(c->Nl >> 8); in SHA512_Final() 175 p[sizeof(c->u) - 3] = (unsigned char)(c->Nl >> 16); in SHA512_Final() 176 p[sizeof(c->u) - 4] = (unsigned char)(c->Nl >> 24); in SHA512_Final() 177 p[sizeof(c->u) - 5] = (unsigned char)(c->Nl >> 32); in SHA512_Final() [all …]
|
| /freebsd/crypto/openssl/include/internal/ |
| H A D | sm3.h | 30 SM3_WORD Nl, Nh; member
|
| /freebsd/contrib/sendmail/src/ |
| H A D | conf.c | 1522 struct nlist Nl[2]; variable 1524 struct nlist Nl[] = variable 1555 (void) sm_strlcpy(Nl[X_AVENRUN].n_name, LA_AVENRUN, in getla() 1556 sizeof(Nl[X_AVENRUN].n_name)); in getla() 1557 Nl[1].n_name[0] = '\0'; in getla() 1561 if (knlist(Nl, 1, sizeof(Nl[0])) < 0) in getla() 1563 if (nlist(_PATH_UNIX, Nl) < 0) in getla() 1571 if (Nl[X_AVENRUN].n_value == 0) in getla() 1579 Nl[X_AVENRUN].n_value &= NAMELISTMASK; in getla() 1603 (unsigned long) Nl[X_AVENRUN].n_value); in getla() [all …]
|
| /freebsd/crypto/openssl/test/recipes/30-test_evp_data/ |
| H A D | evppkey_ecdsa_sigalg.txt | 132 3ev1gTwRBduzqqlwd54AUSgI+pjttW8zrWNitO8H1sf59MPWOESKxNtZ1+Nl
|
| H A D | evppkey_ecdsa.txt | 133 3ev1gTwRBduzqqlwd54AUSgI+pjttW8zrWNitO8H1sf59MPWOESKxNtZ1+Nl
|
| /freebsd/crypto/heimdal/lib/wind/ |
| H A D | DerivedNormalizationProps.txt | 1246 2160..217F ; NFKD_QC; N # Nl [32] ROMAN NUMERAL ONE..SMALL ROMAN NUMERAL ONE THOUSAND 1286 3038..303A ; NFKD_QC; N # Nl [3] HANGZHOU NUMERAL TEN..HANGZHOU NUMERAL THIRTY 1662 2160..217F ; NFKC_QC; N # Nl [32] ROMAN NUMERAL ONE..SMALL ROMAN NUMERAL ONE THOUSAND 1678 3038..303A ; NFKC_QC; N # Nl [3] HANGZHOU NUMERAL TEN..HANGZHOU NUMERAL THIRTY 2321 2161..2163 ; Expands_On_NFKD # Nl [3] ROMAN NUMERAL TWO..ROMAN NUMERAL FOUR 2322 2165..2168 ; Expands_On_NFKD # Nl [4] ROMAN NUMERAL SIX..ROMAN NUMERAL NINE 2323 216A..216B ; Expands_On_NFKD # Nl [2] ROMAN NUMERAL ELEVEN..ROMAN NUMERAL TWELVE 2324 2171..2173 ; Expands_On_NFKD # Nl [3] SMALL ROMAN NUMERAL TWO..SMALL ROMAN NUMERAL FOUR 2325 2175..2178 ; Expands_On_NFKD # Nl [4] SMALL ROMAN NUMERAL SIX..SMALL ROMAN NUMERAL NINE 2326 217A..217B ; Expands_On_NFKD # Nl [2] SMALL ROMAN NUMERAL ELEVEN..SMALL ROMAN NUMERAL TWELVE [all …]
|