| /freebsd/lib/msun/src/ |
| H A D | s_ctanh.c | 77 double t, beta, s, rho, denom; in ctanh() local 134 rho = sqrt(1 + s * s); /* = cosh(x) */ in ctanh() 136 return (CMPLX((beta * rho * s) / denom, t / denom)); in ctanh()
|
| H A D | s_ctanhf.c | 42 float t, beta, s, rho, denom; in ctanhf() local 72 rho = sqrtf(1 + s * s); in ctanhf() 74 return (CMPLXF((beta * rho * s) / denom, t / denom)); in ctanhf()
|
| /freebsd/crypto/openssl/crypto/ml_dsa/ |
| H A D | ml_dsa_key.c | 199 memcpy(ret->rho, src->rho, sizeof(src->rho)); in ossl_ml_dsa_key_dup() 335 if (!matrix_expand_A(md_ctx, key->shake128_md, key->rho, &a_ntt)) in public_from_private() 421 const uint8_t *const rho = expanded_seed; /* p = Public Random Seed */ in keygen_internal() local 442 memcpy(out->rho, rho, sizeof(out->rho)); in keygen_internal()
|
| H A D | ml_dsa_matrix.h | 40 matrix_expand_A(EVP_MD_CTX *g_ctx, const EVP_MD *md, const uint8_t *rho, in matrix_expand_A() argument 43 return ossl_ml_dsa_matrix_expand_A(g_ctx, md, rho, out); in matrix_expand_A()
|
| H A D | ml_dsa_encoders.c | 636 || !WPACKET_memcpy(&pkt, key->rho, sizeof(key->rho))) in ossl_ml_dsa_pk_encode() 682 || !PACKET_copy_bytes(&pkt, key->rho, sizeof(key->rho))) in ossl_ml_dsa_pk_decode() 728 || !WPACKET_memcpy(&pkt, key->rho, sizeof(key->rho)) in ossl_ml_dsa_sk_encode() 792 || !PACKET_copy_bytes(&pkt, key->rho, sizeof(key->rho)) in ossl_ml_dsa_sk_decode()
|
| H A D | ml_dsa_key.h | 22 uint8_t rho[ML_DSA_RHO_BYTES]; /* public random seed */ member
|
| H A D | ml_dsa_sample.c | 201 const uint8_t *rho, MATRIX *out) in ossl_ml_dsa_matrix_expand_A() argument 209 memcpy(derived_seed, rho, ML_DSA_RHO_BYTES); in ossl_ml_dsa_matrix_expand_A()
|
| H A D | ml_dsa_local.h | 64 const uint8_t *rho, MATRIX *out);
|
| H A D | ml_dsa_sign.c | 110 if (!matrix_expand_A(md_ctx, priv->shake128_md, priv->rho, &a_ntt)) in ml_dsa_sign_internal() 255 || !matrix_expand_A(md_ctx, pub->shake128_md, pub->rho, &a_ntt)) in ml_dsa_verify_internal()
|
| /freebsd/crypto/openssl/crypto/ml_kem/ |
| H A D | ml_kem.c | 715 if (!EVP_DigestUpdate(mdctx, key->rho, ML_KEM_RANDOM_BYTES)) in hash_h_pubkey() 1313 memcpy(input, key->rho, ML_KEM_RANDOM_BYTES); in matrix_expand() 1559 const uint8_t *rho = key->rho; in encode_pubkey() local 1563 memcpy(out + vinfo->vector_bytes, rho, ML_KEM_RANDOM_BYTES); in encode_pubkey() 1605 memcpy(key->rho, in + vinfo->vector_bytes, ML_KEM_RANDOM_BYTES); in parse_pubkey() 1701 memcpy(key->rho, hashed, ML_KEM_RANDOM_BYTES); in genkey() 1703 CONSTTIME_DECLASSIFY(key->rho, ML_KEM_RANDOM_BYTES); in genkey() 1860 key->rho = key->seedbuf; in add_storage() 1944 key->d = key->z = key->rho = key->pkhash = key->encoded_dk = NULL; in ossl_ml_kem_key_new() 1975 ret->d = ret->z = ret->rho = ret->pkhash = NULL; in ossl_ml_kem_key_dup() [all …]
|
| /freebsd/crypto/openssl/crypto/bn/ |
| H A D | bn_gf2m.c | 995 BIGNUM *a, *z, *rho, *w, *w2, *tmp; in BN_GF2m_mod_solve_quad_arr() local 1036 rho = BN_CTX_get(ctx); in BN_GF2m_mod_solve_quad_arr() 1042 if (!BN_priv_rand_ex(rho, p[0], BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ANY, in BN_GF2m_mod_solve_quad_arr() 1045 if (!BN_GF2m_mod_arr(rho, rho, p)) in BN_GF2m_mod_solve_quad_arr() 1048 if (!BN_copy(w, rho)) in BN_GF2m_mod_solve_quad_arr() 1059 if (!BN_GF2m_add(w, w2, rho)) in BN_GF2m_mod_solve_quad_arr()
|
| /freebsd/crypto/openssl/include/crypto/ |
| H A D | ml_kem.h | 178 uint8_t *rho; /* Public matrix seed */ member
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | EVP_PKEY_set1_encoded_public_key.pod | 47 vector and 32-byte matrix seed I<rho>).
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CommentHTMLNamedCharacterReferences.td | 135 def : NCR<"rho", 0x003C1>;
|
| /freebsd/contrib/wpa/src/tls/ |
| H A D | libtommath.c | 2646 mp_montgomery_setup (mp_int * n, mp_digit * rho) in mp_montgomery_setup() argument 2677 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK; in mp_montgomery_setup() 2693 static int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) in fast_mp_montgomery_reduce() argument 2743 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK); in fast_mp_montgomery_reduce()
|
| /freebsd/crypto/openssh/ |
| H A D | sntrup761.c | 2138 const unsigned char *rho = pk + crypto_kem_sntrup761_PUBLICKEYBYTES; in crypto_kem_sntrup761_dec() local 2139 const unsigned char *cache = rho + Small_bytes; in crypto_kem_sntrup761_dec() 2146 for (i = 0; i < Small_bytes; ++i) r_enc[i] ^= mask & (r_enc[i] ^ rho[i]); in crypto_kem_sntrup761_dec()
|
| /freebsd/crypto/libecc/ |
| H A D | README.md | 304 …* [src/examples/basic/nn_pollard_rho.c](src/examples/nn_pollard_rho.c): this example…
|
| /freebsd/contrib/ncurses/ |
| H A D | NEWS | 11412 <rho@mipos2.intel.com>).
|
| /freebsd/share/dict/ |
| H A D | web2a | 11473 Chi-rho monogram
|
| H A D | web2 | 169561 rho
|