HomeSort by relevance Sort by last modified time
    Searched refs:ec_key (Results 26 - 46 of 46) sorted by null

12

  /external/webrtc/webrtc/base/
opensslidentity.cc 67 EC_KEY* ec_key = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1); local
68 if (!pkey || !ec_key || !EC_KEY_generate_key(ec_key) ||
69 !EVP_PKEY_assign_EC_KEY(pkey, ec_key)) {
71 EC_KEY_free(ec_key);
75 // ownership of ec_key struct was assigned, don't free it.
  /system/keymaster/
keymaster1_engine.h 73 EC_KEY* BuildEcKey(const KeymasterKeyBlob& blob, const AuthorizationSet& additional_params,
78 KeyData* GetData(const EC_KEY* rsa) const;
108 unsigned int* sig_len, EC_KEY* ec_key);
Makefile 79 ec_key.cpp \
326 ec_key.o \
soft_keymaster_context.cpp     [all...]
  /system/core/trusty/keymaster/
Makefile 69 $(KM)/ec_key.cpp \
165 $(KM)/ec_key.o \
  /external/boringssl/src/crypto/fipsmodule/ec/
ec_key.c 68 #include <openssl/ec_key.h>
87 EC_KEY *EC_KEY_new(void) { return EC_KEY_new_method(NULL); }
89 EC_KEY *EC_KEY_new_method(const ENGINE *engine) {
90 EC_KEY *ret = OPENSSL_malloc(sizeof(EC_KEY));
96 OPENSSL_memset(ret, 0, sizeof(EC_KEY));
122 EC_KEY *EC_KEY_new_by_curve_name(int nid) {
123 EC_KEY *ret = EC_KEY_new();
136 void EC_KEY_free(EC_KEY *r) {
159 OPENSSL_cleanse((void *)r, sizeof(EC_KEY));
    [all...]
ec_test.cc 25 #include <openssl/ec_key.h>
104 static bssl::UniquePtr<EC_KEY> DecodeECPrivateKey(const uint8_t *in,
108 bssl::UniquePtr<EC_KEY> ret(EC_KEY_parse_private_key(&cbs, NULL));
117 static bool EncodeECPrivateKey(std::vector<uint8_t> *out, const EC_KEY *key) {
132 bssl::UniquePtr<EC_KEY> key =
165 bssl::UniquePtr<EC_KEY> key =
181 bssl::UniquePtr<EC_KEY> key =
197 bssl::UniquePtr<EC_KEY> key(EC_KEY_new_by_curve_name(NID_X9_62_prime256v1));
261 bssl::UniquePtr<EC_KEY> key2(EC_KEY_new());
284 // Generate an EC_KEY
    [all...]
  /external/boringssl/src/crypto/ecdh/
ecdh_test.cc 24 #include <openssl/ec_key.h>
82 bssl::UniquePtr<EC_KEY> key(EC_KEY_new());
  /external/boringssl/src/crypto/evp/
p_ec.c 64 #include <openssl/ec_key.h>
120 EC_KEY *ec = ctx->pkey->pkey.ec;
147 EC_KEY *eckey;
213 EC_KEY *ec = EC_KEY_new();
print.c 59 #include <openssl/ec_key.h>
293 static int do_EC_KEY_print(BIO *bp, const EC_KEY *x, int off, int ktype) {
  /external/boringssl/src/fipstools/
cavp_ecdsa2_siggen_test.cc 24 #include <openssl/ec_key.h>
41 bssl::UniquePtr<EC_KEY> key(EC_KEY_new_by_curve_name(nid));
  /external/boringssl/src/ssl/
ssl_cert.cc 124 #include <openssl/ec_key.h>
835 EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(pkey); local
838 &group_id, EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key))) ||
840 EC_KEY_get_conv_form(ec_key) != POINT_CONVERSION_UNCOMPRESSED) {
ssl_lib.cc 1757 const EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(private_key); local
    [all...]
t1_lib.cc 3391 EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(ssl->tlsext_channel_id_private); local
    [all...]
ssl_privkey.cc 63 #include <openssl/ec_key.h>
handshake_client.cc 159 #include <openssl/ec_key.h>
    [all...]
  /external/boringssl/src/crypto/ecdsa_extra/
ecdsa_asn1.c 61 #include <openssl/ec_key.h>
70 unsigned int *sig_len, const EC_KEY *eckey) {
73 (EC_KEY*) eckey /* cast away const */);
82 const BIGNUM *r, const EC_KEY *eckey) {
118 const uint8_t *sig, size_t sig_len, const EC_KEY *eckey) {
147 size_t ECDSA_size(const EC_KEY *key) {
  /external/boringssl/src/include/openssl/
ec.h 353 /* Old code expects to get EC_KEY from ec.h. */
354 #include <openssl/ec_key.h>
ssl.h     [all...]
  /external/boringssl/src/tool/
speed.cc 31 #include <openssl/ec_key.h>
378 bssl::UniquePtr<EC_KEY> key(EC_KEY_new_by_curve_name(nid));
414 bssl::UniquePtr<EC_KEY> key(EC_KEY_new_by_curve_name(nid));
  /external/conscrypt/common/src/jni/main/cpp/
NativeCrypto.cpp 563 // ExDataDup is called when one of the RSA or EC_KEY objects is duplicated. We
574 // ExDataFree is called when one of the RSA or EC_KEY objects is freed.
715 jobject EcKeyGetKey(const EC_KEY* ec_key) {
717 ec_key, g_ecdsa_exdata_index));
725 EC_KEY* ec_key) {
727 jobject private_key = EcKeyGetKey(ec_key);
751 size_t max_expected_size = ECDSA_size(ec_key);
914 bssl::UniquePtr<EC_KEY> eckey(EC_KEY_new())
    [all...]

Completed in 993 milliseconds

12