2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-13 06:43:26 +00:00

Fixed HKDF op name

This commit is contained in:
n1474335
2023-03-23 18:21:43 +00:00
parent 6e347742d9
commit 1caecf70a2
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";