Home
last modified time | relevance | path

Searched refs:keylength (Results 1 - 25 of 135) sorted by relevance

123456

/third_party/node/deps/openssl/openssl/crypto/ffc/
H A Dffc_dh.c16 # define FFDHE(sz, keylength) { \
19 keylength, \
24 # define MODP(sz, keylength) { \
27 keylength, \
42 # define FFDHE(sz, keylength) { SN_ffdhe##sz, NID_ffdhe##sz }
43 # define MODP(sz, keylength) { SN_modp_##sz, NID_modp_##sz }
53 int keylength; member
150 return group->keylength; in ossl_ffc_named_group_get_keylength()
167 ffc->keylength = group->keylength; in ossl_ffc_named_group_set()
[all...]
H A Dffc_key_generate.c32 N = params->keylength ? params->keylength : 2 * s; in ossl_ffc_generate_private_key()
H A Dffc_params.c201 dst->keylength = src->keylength; in ossl_ffc_params_copy()
/third_party/openssl/crypto/ffc/
H A Dffc_dh.c16 # define FFDHE(sz, keylength) { \
19 keylength, \
24 # define MODP(sz, keylength) { \
27 keylength, \
42 # define FFDHE(sz, keylength) { SN_ffdhe##sz, NID_ffdhe##sz }
43 # define MODP(sz, keylength) { SN_modp_##sz, NID_modp_##sz }
53 int keylength; member
150 return group->keylength; in ossl_ffc_named_group_get_keylength()
167 ffc->keylength = group->keylength; in ossl_ffc_named_group_set()
[all...]
H A Dffc_key_generate.c32 N = params->keylength ? params->keylength : 2 * s; in ossl_ffc_generate_private_key()
H A Dffc_params.c201 dst->keylength = src->keylength; in ossl_ffc_params_copy()
/third_party/icu/icu4c/source/test/intltest/
H A Dapicoll.cpp1126 int32_t keylength = 0; in TestSortKey() local
1127 const uint8_t *key2primary_alias = key2.getByteArray(keylength); in TestSortKey()
1128 LocalArray<uint8_t> key2primary(new uint8_t[keylength]); in TestSortKey()
1129 memcpy(key2primary.getAlias(), key2primary_alias, keylength); in TestSortKey()
1135 const uint8_t *tempkey = key1.getByteArray(keylength); in TestSortKey()
1136 doAssert(memcmp(tempkey, sortkey1, keylength) == 0, in TestSortKey()
1138 tempkey = key2.getByteArray(keylength); in TestSortKey()
1139 doAssert(memcmp(tempkey, sortkey2, keylength) == 0, in TestSortKey()
1141 tempkey = key3.getByteArray(keylength); in TestSortKey()
1142 doAssert(memcmp(tempkey, sortkey3, keylength) in TestSortKey()
[all...]
/third_party/node/deps/openssl/openssl/ssl/
H A Dtls_depr.c196 int keylength)) in SSL_CTX_set_tmp_dh_callback()
202 int keylength)) in SSL_set_tmp_dh_callback()
194 SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx, DH *(*dh) (SSL *ssl, int is_export, int keylength)) SSL_CTX_set_tmp_dh_callback() argument
201 SSL_set_tmp_dh_callback(SSL *ssl, DH *(*dh) (SSL *ssl, int is_export, int keylength)) SSL_set_tmp_dh_callback() argument
/third_party/openssl/ssl/
H A Dtls_depr.c196 int keylength)) in SSL_CTX_set_tmp_dh_callback()
202 int keylength)) in SSL_set_tmp_dh_callback()
194 SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx, DH *(*dh) (SSL *ssl, int is_export, int keylength)) SSL_CTX_set_tmp_dh_callback() argument
201 SSL_set_tmp_dh_callback(SSL *ssl, DH *(*dh) (SSL *ssl, int is_export, int keylength)) SSL_set_tmp_dh_callback() argument
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
H A Dcallbacks.rs213 keylength: c_int,
224 match (*callback)(ssl, is_export != 0, keylength as u32) {
241 keylength: c_int,
252 match (*callback)(ssl, is_export != 0, keylength as u32) {
268 keylength: c_int,
279 match callback(ssl, is_export != 0, keylength as u32) {
296 keylength: c_int,
307 match callback(ssl, is_export != 0, keylength as u32) {
/third_party/rust/crates/rust-openssl/openssl-sys/src/
H A Dssl.rs572 dh: unsafe extern "C" fn(ssl: *mut SSL, is_export: c_int, keylength: c_int) -> *mut DH, in SSL_CTX_set_tmp_dh_callback()
577 dh: unsafe extern "C" fn(ssl: *mut SSL, is_export: c_int, keylength: c_int) -> *mut DH, in SSL_set_tmp_dh_callback()
586 keylength: c_int, in SSL_CTX_set_tmp_ecdh_callback()
596 keylength: c_int, in SSL_set_tmp_ecdh_callback()
/third_party/node/deps/openssl/openssl/crypto/dh/
H A Ddh_group_params.c77 dh->params.keylength = ossl_ffc_named_group_get_keylength(group); in ossl_dh_cache_named_group()
/third_party/openssl/crypto/dh/
H A Ddh_group_params.c77 dh->params.keylength = ossl_ffc_named_group_get_keylength(group); in ossl_dh_cache_named_group()
/third_party/node/deps/openssl/openssl/crypto/evp/
H A Dp5_crpt2.c219 if (kdf->keylength && (ASN1_INTEGER_get(kdf->keylength) != (int)keylen)) { in PKCS5_v2_PBKDF2_keyivgen_ex()
/third_party/openssl/crypto/evp/
H A Dp5_crpt2.c219 if (kdf->keylength && (ASN1_INTEGER_get(kdf->keylength) != (int)keylen)) { in PKCS5_v2_PBKDF2_keyivgen_ex()
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
H A Dssl.rs825 unsafe extern "C" fn(ssl: *mut SSL, is_export: c_int, keylength: c_int) -> *mut DH, in SSL_CTX_set_tmp_dh_callback__fixed_rust()
832 unsafe extern "C" fn(ssl: *mut SSL, is_export: c_int, keylength: c_int) -> *mut DH, in SSL_set_tmp_dh_callback__fixed_rust()
840 unsafe extern "C" fn(ssl: *mut SSL, is_export: c_int, keylength: c_int) -> *mut EC_KEY, in SSL_CTX_set_tmp_ecdh_callback__fixed_rust()
848 unsafe extern "C" fn(ssl: *mut SSL, is_export: c_int, keylength: c_int) -> *mut EC_KEY, in SSL_set_tmp_ecdh_callback__fixed_rust()
/third_party/node/deps/openssl/openssl/include/internal/
H A Dffc.h122 int keylength; member
/third_party/openssl/include/internal/
H A Dffc.h117 int keylength; member
/third_party/openssl/test/
H A Dffc_internal_test.c677 if (!TEST_int_eq(params->keylength, 275)) in ffc_params_copy_test()
683 if (!TEST_int_eq(copy.keylength, 275)) in ffc_params_copy_test()
/third_party/openssl/ohos_lite/include/openssl/
H A Dssl.h2069 /* NB: the |keylength| is only applicable when is_export is true */
2072 int keylength));
2075 int keylength));
H A Dx509.h302 ASN1_INTEGER *keylength; member
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/
H A Dssl.h2225 /* NB: the |keylength| is only applicable when is_export is true */
2229 int keylength));
2233 int keylength));
/third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/
H A Dssl.h2225 /* NB: the |keylength| is only applicable when is_export is true */
2229 int keylength));
2233 int keylength));
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/
H A Dssl.h2225 /* NB: the |keylength| is only applicable when is_export is true */
2229 int keylength));
2233 int keylength));
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/
H A Dssl.h2225 /* NB: the |keylength| is only applicable when is_export is true */
2229 int keylength));
2233 int keylength));

Completed in 39 milliseconds

123456