From ed0f5697d8c605930ddc823bb902b041669f304a Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Thu, 2 Jul 2020 12:51:00 +0200 Subject: [PATCH] src: fix minor comment typo in KeyObjectData MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/34167 Reviewed-By: Anna Henningsen Reviewed-By: Richard Lau Reviewed-By: Tobias Nießen Reviewed-By: David Carlier --- src/node_crypto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_crypto.h b/src/node_crypto.h index a61089f0f131c0..63468e4f18dad1 100644 --- a/src/node_crypto.h +++ b/src/node_crypto.h @@ -420,7 +420,7 @@ class KeyObjectData { KeyType GetKeyType() const; // These functions allow unprotected access to the raw key material and should - // only be used to implement cryptograohic operations requiring the key. + // only be used to implement cryptographic operations requiring the key. ManagedEVPPKey GetAsymmetricKey() const; const char* GetSymmetricKey() const; size_t GetSymmetricKeySize() const;