Home
last modified time | relevance | path

Searched refs:dhm (Results 1 – 21 of 21) sorted by relevance

/third_party/node/deps/openssl/openssl/crypto/dh/
Ddh_meth.c22 DH_METHOD *dhm = OPENSSL_zalloc(sizeof(*dhm)); in DH_meth_new() local
24 if (dhm != NULL) { in DH_meth_new()
25 dhm->flags = flags; in DH_meth_new()
27 dhm->name = OPENSSL_strdup(name); in DH_meth_new()
28 if (dhm->name != NULL) in DH_meth_new()
29 return dhm; in DH_meth_new()
31 OPENSSL_free(dhm); in DH_meth_new()
38 void DH_meth_free(DH_METHOD *dhm) in DH_meth_free() argument
40 if (dhm != NULL) { in DH_meth_free()
41 OPENSSL_free(dhm->name); in DH_meth_free()
[all …]
/third_party/openssl/crypto/dh/
Ddh_meth.c22 DH_METHOD *dhm = OPENSSL_zalloc(sizeof(*dhm)); in DH_meth_new() local
24 if (dhm != NULL) { in DH_meth_new()
25 dhm->flags = flags; in DH_meth_new()
27 dhm->name = OPENSSL_strdup(name); in DH_meth_new()
28 if (dhm->name != NULL) in DH_meth_new()
29 return dhm; in DH_meth_new()
31 OPENSSL_free(dhm); in DH_meth_new()
38 void DH_meth_free(DH_METHOD *dhm) in DH_meth_free() argument
40 if (dhm != NULL) { in DH_meth_free()
41 OPENSSL_free(dhm->name); in DH_meth_free()
[all …]
/third_party/node/deps/openssl/openssl/include/openssl/
Ddh.h276 OSSL_DEPRECATEDIN_3_0 void DH_meth_free(DH_METHOD *dhm);
277 OSSL_DEPRECATEDIN_3_0 DH_METHOD *DH_meth_dup(const DH_METHOD *dhm);
278 OSSL_DEPRECATEDIN_3_0 const char *DH_meth_get0_name(const DH_METHOD *dhm);
279 OSSL_DEPRECATEDIN_3_0 int DH_meth_set1_name(DH_METHOD *dhm, const char *name);
280 OSSL_DEPRECATEDIN_3_0 int DH_meth_get_flags(const DH_METHOD *dhm);
281 OSSL_DEPRECATEDIN_3_0 int DH_meth_set_flags(DH_METHOD *dhm, int flags);
282 OSSL_DEPRECATEDIN_3_0 void *DH_meth_get0_app_data(const DH_METHOD *dhm);
283 OSSL_DEPRECATEDIN_3_0 int DH_meth_set0_app_data(DH_METHOD *dhm, void *app_data);
284 OSSL_DEPRECATEDIN_3_0 int (*DH_meth_get_generate_key(const DH_METHOD *dhm)) (DH *);
285 OSSL_DEPRECATEDIN_3_0 int DH_meth_set_generate_key(DH_METHOD *dhm,
[all …]
/third_party/openssl/include/openssl/
Ddh.h276 OSSL_DEPRECATEDIN_3_0 void DH_meth_free(DH_METHOD *dhm);
277 OSSL_DEPRECATEDIN_3_0 DH_METHOD *DH_meth_dup(const DH_METHOD *dhm);
278 OSSL_DEPRECATEDIN_3_0 const char *DH_meth_get0_name(const DH_METHOD *dhm);
279 OSSL_DEPRECATEDIN_3_0 int DH_meth_set1_name(DH_METHOD *dhm, const char *name);
280 OSSL_DEPRECATEDIN_3_0 int DH_meth_get_flags(const DH_METHOD *dhm);
281 OSSL_DEPRECATEDIN_3_0 int DH_meth_set_flags(DH_METHOD *dhm, int flags);
282 OSSL_DEPRECATEDIN_3_0 void *DH_meth_get0_app_data(const DH_METHOD *dhm);
283 OSSL_DEPRECATEDIN_3_0 int DH_meth_set0_app_data(DH_METHOD *dhm, void *app_data);
284 OSSL_DEPRECATEDIN_3_0 int (*DH_meth_get_generate_key(const DH_METHOD *dhm)) (DH *);
285 OSSL_DEPRECATEDIN_3_0 int DH_meth_set_generate_key(DH_METHOD *dhm,
[all …]
/third_party/openssl/ohos_lite/include/openssl/
Ddh.h199 void DH_meth_free(DH_METHOD *dhm);
200 DH_METHOD *DH_meth_dup(const DH_METHOD *dhm);
201 const char *DH_meth_get0_name(const DH_METHOD *dhm);
202 int DH_meth_set1_name(DH_METHOD *dhm, const char *name);
203 int DH_meth_get_flags(const DH_METHOD *dhm);
204 int DH_meth_set_flags(DH_METHOD *dhm, int flags);
205 void *DH_meth_get0_app_data(const DH_METHOD *dhm);
206 int DH_meth_set0_app_data(DH_METHOD *dhm, void *app_data);
207 int (*DH_meth_get_generate_key(const DH_METHOD *dhm)) (DH *);
208 int DH_meth_set_generate_key(DH_METHOD *dhm, int (*generate_key) (DH *));
[all …]
/third_party/openssl/doc/man3/
DDH_meth_new.pod23 void DH_meth_free(DH_METHOD *dhm);
25 DH_METHOD *DH_meth_dup(const DH_METHOD *dhm);
27 const char *DH_meth_get0_name(const DH_METHOD *dhm);
28 int DH_meth_set1_name(DH_METHOD *dhm, const char *name);
30 int DH_meth_get_flags(const DH_METHOD *dhm);
31 int DH_meth_set_flags(DH_METHOD *dhm, int flags);
33 void *DH_meth_get0_app_data(const DH_METHOD *dhm);
34 int DH_meth_set0_app_data(DH_METHOD *dhm, void *app_data);
36 int (*DH_meth_get_generate_key(const DH_METHOD *dhm))(DH *);
37 int DH_meth_set_generate_key(DH_METHOD *dhm, int (*generate_key)(DH *));
[all …]
/third_party/mbedtls/programs/pkey/
Ddh_server.c77 mbedtls_dhm_context dhm; in main() local
84 mbedtls_dhm_init(&dhm); in main()
155 if (mbedtls_mpi_read_file(&dhm.MBEDTLS_PRIVATE(P), 16, f) != 0 || in main()
156 mbedtls_mpi_read_file(&dhm.MBEDTLS_PRIVATE(G), 16, f) != 0) { in main()
190 mbedtls_dhm_make_params(&dhm, (int) mbedtls_mpi_size(&dhm.MBEDTLS_PRIVATE(P)), buf, &n, in main()
231 n = mbedtls_dhm_get_len(&dhm); in main()
237 if ((ret = mbedtls_dhm_read_public(&dhm, buf, n)) != 0) { in main()
248 if ((ret = mbedtls_dhm_calc_secret(&dhm, buf, sizeof(buf), &n, in main()
298 mbedtls_dhm_free(&dhm); in main()
Ddh_client.c77 mbedtls_dhm_context dhm; in main() local
81 mbedtls_dhm_init(&dhm); in main()
168 if ((ret = mbedtls_dhm_read_params(&dhm, &p, end)) != 0) { in main()
173 n = mbedtls_dhm_get_len(&dhm); in main()
210 n = mbedtls_dhm_get_len(&dhm); in main()
211 if ((ret = mbedtls_dhm_make_public(&dhm, (int) n, buf, n, in main()
228 if ((ret = mbedtls_dhm_calc_secret(&dhm, buf, sizeof(buf), &n, in main()
276 mbedtls_dhm_free(&dhm); in main()
/third_party/mbedtls/library/
Ddhm.c494 int mbedtls_dhm_parse_dhm(mbedtls_dhm_context *dhm, const unsigned char *dhmin, in mbedtls_dhm_parse_dhm() argument
547 if ((ret = mbedtls_asn1_get_mpi(&p, end, &dhm->P)) != 0 || in mbedtls_dhm_parse_dhm()
548 (ret = mbedtls_asn1_get_mpi(&p, end, &dhm->G)) != 0) { in mbedtls_dhm_parse_dhm()
578 mbedtls_dhm_free(dhm); in mbedtls_dhm_parse_dhm()
640 int mbedtls_dhm_parse_dhmfile(mbedtls_dhm_context *dhm, const char *path) in mbedtls_dhm_parse_dhmfile() argument
650 ret = mbedtls_dhm_parse_dhm(dhm, buf, n); in mbedtls_dhm_parse_dhmfile()
695 mbedtls_dhm_context dhm; in mbedtls_dhm_self_test() local
697 mbedtls_dhm_init(&dhm); in mbedtls_dhm_self_test()
703 if ((ret = mbedtls_dhm_parse_dhm(&dhm, in mbedtls_dhm_self_test()
719 mbedtls_dhm_free(&dhm); in mbedtls_dhm_self_test()
DMakefile100 dhm.o \
DCMakeLists.txt35 dhm.c
/third_party/mbedtls/programs/test/
Dbenchmark.c515 rsa, dhm, ecdsa, ecdh; member
589 todo.dhm = 1; in main()
973 if (todo.dhm) { in main()
992 mbedtls_dhm_context dhm; in main() local
996 mbedtls_dhm_init(&dhm); in main()
998 if (mbedtls_mpi_read_binary(&dhm.P, dhm_P[i], in main()
1000 mbedtls_mpi_read_binary(&dhm.G, dhm_G[i], in main()
1005 n = mbedtls_mpi_size(&dhm.P); in main()
1006 mbedtls_dhm_make_public(&dhm, (int) n, buf, n, myrand, NULL); in main()
1007 if (mbedtls_mpi_copy(&dhm.GY, &dhm.GX) != 0) { in main()
[all …]
/third_party/mbedtls/include/mbedtls/
Ddhm.h360 int mbedtls_dhm_parse_dhm(mbedtls_dhm_context *dhm, const unsigned char *dhmin,
376 int mbedtls_dhm_parse_dhmfile(mbedtls_dhm_context *dhm, const char *path);
/third_party/skia/src/core/
DSkRemoteGlyphCache.cpp616 SkStrikeServerImpl::SkStrikeServerImpl(SkStrikeServer::DiscardableHandleManager* dhm) in SkStrikeServerImpl() argument
617 : fDiscardableHandleManager(dhm) { in SkStrikeServerImpl()
831 SkStrikeServer::SkStrikeServer(DiscardableHandleManager* dhm) in SkStrikeServer() argument
832 : fImpl(new SkStrikeServerImpl{dhm}) { } in SkStrikeServer()
/third_party/mbedtls/scripts/data_files/
Dquery_config.fmt49 #include "mbedtls/dhm.h"
/third_party/mbedtls/
Dmbedtls.gni60 "$MBEDTLSDIR/library/dhm.c",
DChangeLog4331 * dhm_parse_dhm() (hence dhm_parse_dhmfile()) did not set dhm->len.
/third_party/mbedtls/tests/suites/
Dtest_suite_dhm.function2 #include "mbedtls/dhm.h"
/third_party/mbedtls/programs/ssl/
Dssl_server2.c1515 mbedtls_dhm_context dhm; in main() local
1612 mbedtls_dhm_init(&dhm); in main()
2738 if ((ret = mbedtls_dhm_parse_dhmfile(&dhm, opt.dhm_file)) != 0) { in main()
3214 ret = mbedtls_ssl_conf_dh_param_ctx(&conf, &dhm); in main()
4211 mbedtls_dhm_free(&dhm); in main()
/third_party/tzdata/
Deurope1469 # https://www.dhm.de/lemo/html/biografien/BersarinNikolai/
/third_party/astc-encoder/Test/Images/HDRIHaven/HDR-RGB/
Dhdr-rgb-eveningroad.hdr1090 …��|}{�|������{{}z�~���۶��������޸����������|�������yy�銂��~}���{ฯޮ���~|կ���j�dhm�i�hprhrhfh�l�|f����…