fix: spelling

This commit is contained in:
Medjedtxm 2026-01-14 17:30:01 -05:00
parent d8f06b24bb
commit b71a551f05

View File

@ -6,7 +6,7 @@
* https://datatracker.ietf.org/doc/html/draft-krovetz-rc6-rc5-vectors-00 * https://datatracker.ietf.org/doc/html/draft-krovetz-rc6-rc5-vectors-00
* *
* Note: PKCS5 padding adds an extra block when input is exactly block-aligned. * Note: PKCS5 padding adds an extra block when input is exactly block-aligned.
* Round-trip tests verify correct encryption/decryption behavior. * Round-trip tests verify correct encryption/decryption behaviour.
* *
* @author Medjedtxm * @author Medjedtxm
* @copyright Crown Copyright 2026 * @copyright Crown Copyright 2026
@ -247,7 +247,7 @@ TestRegister.addTests([
op: "RC6 Encrypt", op: "RC6 Encrypt",
args: [ args: [
{ string: "mypassword123456", option: "UTF8" }, { string: "mypassword123456", option: "UTF8" },
{ string: "initializevec123", option: "UTF8" }, { string: "initialisevec123", option: "UTF8" },
"CBC", "Raw", "Hex", "PKCS5" "CBC", "Raw", "Hex", "PKCS5"
] ]
}, },
@ -255,7 +255,7 @@ TestRegister.addTests([
op: "RC6 Decrypt", op: "RC6 Decrypt",
args: [ args: [
{ string: "mypassword123456", option: "UTF8" }, { string: "mypassword123456", option: "UTF8" },
{ string: "initializevec123", option: "UTF8" }, { string: "initialisevec123", option: "UTF8" },
"CBC", "Hex", "Raw", "PKCS5" "CBC", "Hex", "Raw", "PKCS5"
] ]
} }