Home
last modified time | relevance | path

Searched refs:ManagedEVPPKey (Results 1 – 2 of 2) sorted by relevance

/third_party/node/src/
Dnode_crypto.h398 class ManagedEVPPKey {
400 ManagedEVPPKey() = default;
401 explicit ManagedEVPPKey(EVPKeyPointer&& pkey);
402 ManagedEVPPKey(const ManagedEVPPKey& that);
403 ManagedEVPPKey& operator=(const ManagedEVPPKey& that);
418 KeyType type, const ManagedEVPPKey& pkey);
424 ManagedEVPPKey GetAsymmetricKey() const;
436 KeyObjectData(KeyType type, const ManagedEVPPKey& pkey) in KeyObjectData()
445 const ManagedEVPPKey asymmetric_key_;
706 const ManagedEVPPKey& pkey,
[all …]
Dnode_crypto.cc2995 static inline ManagedEVPPKey GetParsedKey(Environment* env, in GetParsedKey()
3011 return ManagedEVPPKey(std::move(pkey)); in GetParsedKey()
3058 static ManagedEVPPKey GetPrivateKeyFromJs( in GetPrivateKeyFromJs()
3068 return ManagedEVPPKey(); in GetPrivateKeyFromJs()
3078 ASSIGN_OR_RETURN_UNWRAP(&key, args[*offset].As<Object>(), ManagedEVPPKey()); in GetPrivateKeyFromJs()
3085 static ManagedEVPPKey GetPublicOrPrivateKeyFromJs( in GetPublicOrPrivateKeyFromJs()
3094 return ManagedEVPPKey(); in GetPublicOrPrivateKeyFromJs()
3225 ManagedEVPPKey::ManagedEVPPKey(EVPKeyPointer&& pkey) : pkey_(std::move(pkey)) {} in ManagedEVPPKey() function in node::crypto::ManagedEVPPKey
3227 ManagedEVPPKey::ManagedEVPPKey(const ManagedEVPPKey& that) { in ManagedEVPPKey() function in node::crypto::ManagedEVPPKey
3231 ManagedEVPPKey& ManagedEVPPKey::operator=(const ManagedEVPPKey& that) { in operator =()
[all …]