Home
last modified time | relevance | path

Searched refs:KeyObjectData (Results 1 – 3 of 3) sorted by relevance

/third_party/node/src/
Dnode_crypto.h413 class KeyObjectData {
415 static std::shared_ptr<KeyObjectData> CreateSecret(
417 static std::shared_ptr<KeyObjectData> CreateAsymmetric(
429 KeyObjectData(std::unique_ptr<char, std::function<void(char*)>> symmetric_key, in KeyObjectData() function
436 KeyObjectData(KeyType type, const ManagedEVPPKey& pkey) in KeyObjectData() function
453 std::shared_ptr<KeyObjectData> data);
460 const std::shared_ptr<KeyObjectData>& Data();
485 std::shared_ptr<KeyObjectData> data_;
498 explicit KeyObjectTransferData(const std::shared_ptr<KeyObjectData>& data) in SET_MEMORY_INFO_NAME()
511 std::shared_ptr<KeyObjectData> data_; in SET_MEMORY_INFO_NAME()
[all …]
Dnode_crypto.cc3248 std::shared_ptr<KeyObjectData> KeyObjectData::CreateSecret( in CreateSecret()
3253 return std::shared_ptr<KeyObjectData>(new KeyObjectData( in CreateSecret()
3261 std::shared_ptr<KeyObjectData> KeyObjectData::CreateAsymmetric( in CreateAsymmetric()
3265 return std::shared_ptr<KeyObjectData>(new KeyObjectData(key_type, pkey)); in CreateAsymmetric()
3268 KeyType KeyObjectData::GetKeyType() const { in GetKeyType()
3272 ManagedEVPPKey KeyObjectData::GetAsymmetricKey() const { in GetAsymmetricKey()
3277 const char* KeyObjectData::GetSymmetricKey() const { in GetSymmetricKey()
3282 size_t KeyObjectData::GetSymmetricKeySize() const { in GetSymmetricKeySize()
3311 std::shared_ptr<KeyObjectData> data) { in Create()
3324 const std::shared_ptr<KeyObjectData>& KeyObjectHandle::Data() { in Data()
[all …]
/third_party/node/doc/changelogs/
DCHANGELOG_V14.md3304 …/nodejs/node/commit/ed0f5697d8)] - **src**: fix minor comment typo in KeyObjectData (Daniel Beveni…