Home
last modified time | relevance | path

Searched refs:kem (Results 1 – 25 of 149) sorted by relevance

123456

/third_party/openssl/crypto/evp/
Dkem.c24 EVP_KEM *kem = NULL; in evp_kem_init() local
86 EVP_KEM_free(kem); in evp_kem_init()
91 kem = EVP_KEM_fetch(ctx->libctx, supported_kem, ctx->propquery); in evp_kem_init()
92 if (kem != NULL) in evp_kem_init()
93 tmp_prov = EVP_KEM_get0_provider(kem); in evp_kem_init()
97 kem = evp_kem_fetch_from_prov((OSSL_PROVIDER *)tmp_prov, in evp_kem_init()
100 if (kem == NULL) { in evp_kem_init()
107 if (kem == NULL) in evp_kem_init()
132 EVP_KEM_free(kem); in evp_kem_init()
137 ctx->op.encap.kem = kem; in evp_kem_init()
[all …]
Dpmeth_lib.c392 if (ctx->op.encap.algctx != NULL && ctx->op.encap.kem != NULL) in evp_pkey_ctx_free_old_ops()
393 ctx->op.encap.kem->freectx(ctx->op.encap.algctx); in evp_pkey_ctx_free_old_ops()
394 EVP_KEM_free(ctx->op.encap.kem); in evp_pkey_ctx_free_old_ops()
396 ctx->op.encap.kem = NULL; in evp_pkey_ctx_free_old_ops()
567 if (pctx->op.encap.kem != NULL) { in EVP_PKEY_CTX_dup()
568 rctx->op.encap.kem = pctx->op.encap.kem; in EVP_PKEY_CTX_dup()
569 if (!EVP_KEM_up_ref(rctx->op.encap.kem)) in EVP_PKEY_CTX_dup()
573 if (!ossl_assert(pctx->op.encap.kem != NULL)) in EVP_PKEY_CTX_dup()
576 if (pctx->op.encap.kem->dupctx != NULL) in EVP_PKEY_CTX_dup()
578 = pctx->op.encap.kem->dupctx(pctx->op.encap.algctx); in EVP_PKEY_CTX_dup()
[all …]
Dbuild.info5 evp_rand.c asymcipher.c kem.c dh_support.c ec_support.c pmeth_check.c
/third_party/node/deps/openssl/openssl/crypto/evp/
Dkem.c24 EVP_KEM *kem = NULL; in evp_kem_init() local
86 EVP_KEM_free(kem); in evp_kem_init()
91 kem = EVP_KEM_fetch(ctx->libctx, supported_kem, ctx->propquery); in evp_kem_init()
92 if (kem != NULL) in evp_kem_init()
93 tmp_prov = EVP_KEM_get0_provider(kem); in evp_kem_init()
97 kem = evp_kem_fetch_from_prov((OSSL_PROVIDER *)tmp_prov, in evp_kem_init()
100 if (kem == NULL) { in evp_kem_init()
107 if (kem == NULL) in evp_kem_init()
132 EVP_KEM_free(kem); in evp_kem_init()
137 ctx->op.encap.kem = kem; in evp_kem_init()
[all …]
Dpmeth_lib.c393 if (ctx->op.encap.algctx != NULL && ctx->op.encap.kem != NULL) in evp_pkey_ctx_free_old_ops()
394 ctx->op.encap.kem->freectx(ctx->op.encap.algctx); in evp_pkey_ctx_free_old_ops()
395 EVP_KEM_free(ctx->op.encap.kem); in evp_pkey_ctx_free_old_ops()
397 ctx->op.encap.kem = NULL; in evp_pkey_ctx_free_old_ops()
568 if (pctx->op.encap.kem != NULL) { in EVP_PKEY_CTX_dup()
569 rctx->op.encap.kem = pctx->op.encap.kem; in EVP_PKEY_CTX_dup()
570 if (!EVP_KEM_up_ref(rctx->op.encap.kem)) in EVP_PKEY_CTX_dup()
574 if (!ossl_assert(pctx->op.encap.kem != NULL)) in EVP_PKEY_CTX_dup()
577 if (pctx->op.encap.kem->dupctx != NULL) in EVP_PKEY_CTX_dup()
579 = pctx->op.encap.kem->dupctx(pctx->op.encap.algctx); in EVP_PKEY_CTX_dup()
[all …]
Dbuild.info5 evp_rand.c asymcipher.c kem.c dh_support.c ec_support.c pmeth_check.c
/third_party/openssl/doc/man3/
DEVP_KEM_free.pod17 void EVP_KEM_free(EVP_KEM *kem);
18 int EVP_KEM_up_ref(EVP_KEM *kem);
19 const char *EVP_KEM_get0_name(const EVP_KEM *kem);
20 int EVP_KEM_is_a(const EVP_KEM *kem, const char *name);
21 OSSL_PROVIDER *EVP_KEM_get0_provider(const EVP_KEM *kem);
23 void (*fn)(EVP_KEM *kem, void *arg), void *arg);
24 int EVP_KEM_names_do_all(const EVP_KEM *kem,
26 const char *EVP_KEM_get0_description(const EVP_KEM *kem);
27 const OSSL_PARAM *EVP_KEM_gettable_ctx_params(const EVP_KEM *kem);
28 const OSSL_PARAM *EVP_KEM_settable_ctx_params(const EVP_KEM *kem);
[all …]
/third_party/openssl/doc/man7/
Dprovider-kem.pod5 provider-kem - The kem library E<lt>-E<gt> provider functions
47 The asymmetric kem (OSSL_OP_KEM) operation enables providers to
48 implement asymmetric kem algorithms and make them available to applications
86 An asymmetric kem algorithm implementation may not implement all of these
98 An asymmetric kem algorithm must also implement some mechanism for generating,
105 structure for holding context information during an asymmetric kem operation.
107 asymmetric kem operation function calls.
112 kem context in the I<ctx> parameter.
115 OSSL_FUNC_kem_dupctx() should duplicate the provider side asymmetric kem
121 encapsulation given a provider side asymmetric kem context in the I<ctx>
[all …]
/third_party/openssl/providers/implementations/
Dbuild.info2 encode_decode storemgmt kem
/third_party/node/deps/openssl/openssl/providers/implementations/
Dbuild.info2 encode_decode storemgmt kem
/third_party/openssl/doc/internal/man3/
Devp_md_get_number.pod18 int evp_kem_get_number(const EVP_KEM *kem);
53 Returns the internal dynamic number assigned to I<kem>.
/third_party/openssl/doc/man1/
Dopenssl-list.pod.in33 [B<-kem-algorithms>]
139 The options B<key-exchange-algorithms>, B<kem-algorithms>,
154 =item B<-kem-algorithms>
/third_party/icu/icu4c/source/data/curr/
Dhu.txt120 "Bolgár kemény leva",
272 "Csehszlovák kemény korona",
1108 "Jugoszláv kemény dínár",
1372 one{"Bolgár kemény leva"}
1373 other{"Bolgár kemény leva"}
1508 one{"csehszlovák kemény korona"}
1509 other{"csehszlovák kemény korona"}
2192 one{"jugoszláv kemény dinár (1966–1990)"}
2193 other{"jugoszláv kemény dinár (1966–1990)"}
/third_party/skia/third_party/externals/icu/source/data/curr/
Dhu.txt120 "Bolgár kemény leva",
272 "Csehszlovák kemény korona",
1108 "Jugoszláv kemény dínár",
1373 one{"Bolgár kemény leva"}
1374 other{"Bolgár kemény leva"}
1509 one{"csehszlovák kemény korona"}
1510 other{"csehszlovák kemény korona"}
2161 one{"jugoszláv kemény dinár (1966–1990)"}
2162 other{"jugoszláv kemény dinár (1966–1990)"}
/third_party/libphonenumber/resources/geocoding/en/
D386.txt16 3862|Maribor/Ravne na Koroškem/Murska Sobota
/third_party/node/deps/openssl/openssl/apps/
Dlist.c57 IS_FETCHABLE(kem, EVP_KEM) in IS_FETCHABLE()
758 static void collect_kem(EVP_KEM *kem, void *stack) in collect_kem() argument
762 if (is_kem_fetchable(kem) in collect_kem()
763 && sk_EVP_KEM_push(kem_stack, kem) > 0) in collect_kem()
764 EVP_KEM_up_ref(kem); in collect_kem()
/third_party/openssl/apps/
Dlist.c57 IS_FETCHABLE(kem, EVP_KEM) in IS_FETCHABLE()
758 static void collect_kem(EVP_KEM *kem, void *stack) in collect_kem() argument
762 if (is_kem_fetchable(kem) in collect_kem()
763 && sk_EVP_KEM_push(kem_stack, kem) > 0) in collect_kem()
764 EVP_KEM_up_ref(kem); in collect_kem()
/third_party/node/deps/openssl/config/archs/BSD-x86_64/no-asm/
Dopenssl-fips.gypi100 'openssl/crypto/evp/kem.c',
230 'openssl/providers/implementations/kem/rsa_kem.c',
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/
Dopenssl-fips.gypi100 'openssl/crypto/evp/kem.c',
230 'openssl/providers/implementations/kem/rsa_kem.c',
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/
Dopenssl-fips.gypi100 'openssl/crypto/evp/kem.c',
230 'openssl/providers/implementations/kem/rsa_kem.c',
/third_party/node/deps/openssl/config/archs/VC-WIN64A/no-asm/
Dopenssl-fips.gypi100 'openssl/crypto/evp/kem.c',
230 'openssl/providers/implementations/kem/rsa_kem.c',
/third_party/node/deps/openssl/config/archs/linux-armv4/no-asm/
Dopenssl-fips.gypi100 'openssl/crypto/evp/kem.c',
230 'openssl/providers/implementations/kem/rsa_kem.c',
/third_party/node/deps/openssl/config/archs/aix64-gcc-as/no-asm/
Dopenssl-fips.gypi100 'openssl/crypto/evp/kem.c',
230 'openssl/providers/implementations/kem/rsa_kem.c',
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/
Dopenssl-fips.gypi100 'openssl/crypto/evp/kem.c',
230 'openssl/providers/implementations/kem/rsa_kem.c',
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/
Dopenssl-fips.gypi100 'openssl/crypto/evp/kem.c',
230 'openssl/providers/implementations/kem/rsa_kem.c',

123456