Fixed HKDF op name

This commit is contained in:
n1474335 2023-03-23 18:21:43 +00:00
parent 6e347742d9
commit 1caecf70a2
No known key found for this signature in database
GPG key ID: D15457B7B4AF3F37
2 changed files with 10 additions and 10 deletions

View file

@ -20,7 +20,7 @@ class DeriveHKDFKey extends Operation {
constructor() {
super();
this.name = "Derive HKDF Key";
this.name = "Derive HKDF key";
this.module = "Crypto";
this.description = "A simple Hashed Message Authenticaton Code (HMAC)-based key derivation function (HKDF), defined in RFC5869.";
this.infoURL = "https://wikipedia.org/wiki/HKDF";