fix: spelling

This commit is contained in:
Medjedtxm 2026-01-10 21:21:53 -05:00
parent dd36e30c18
commit aa9767763d
3 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@
* ECB and CBC block modes.
*
* PRESENT is an ultra-lightweight block cipher designed for constrained environments.
* Standardized in ISO/IEC 29192-2:2019.
* Standardised in ISO/IEC 29192-2:2019.
*
* Reference: "PRESENT: An Ultra-Lightweight Block Cipher"
* https://link.springer.com/chapter/10.1007/978-3-540-74735-2_31

View file

@ -23,7 +23,7 @@ class PRESENTDecrypt extends Operation {
this.name = "PRESENT Decrypt";
this.module = "Ciphers";
this.description = "PRESENT is an ultra-lightweight block cipher designed for constrained environments such as RFID tags and sensor networks. It operates on 64-bit blocks and supports 80-bit or 128-bit keys with 31 rounds. Standardized in ISO/IEC 29192-2:2019.<br><br>When using CBC mode, the PKCS#7 padding scheme is used.";
this.description = "PRESENT is an ultra-lightweight block cipher designed for constrained environments such as RFID tags and sensor networks. It operates on 64-bit blocks and supports 80-bit or 128-bit keys with 31 rounds. Standardised in ISO/IEC 29192-2:2019.<br><br>When using CBC mode, the PKCS#7 padding scheme is used.";
this.infoURL = "https://wikipedia.org/wiki/PRESENT_(cipher)";
this.inputType = "string";
this.outputType = "string";

View file

@ -23,7 +23,7 @@ class PRESENTEncrypt extends Operation {
this.name = "PRESENT Encrypt";
this.module = "Ciphers";
this.description = "PRESENT is an ultra-lightweight block cipher designed for constrained environments such as RFID tags and sensor networks. It operates on 64-bit blocks and supports 80-bit or 128-bit keys with 31 rounds. Standardized in ISO/IEC 29192-2:2019.<br><br>When using CBC mode, the PKCS#7 padding scheme is used.";
this.description = "PRESENT is an ultra-lightweight block cipher designed for constrained environments such as RFID tags and sensor networks. It operates on 64-bit blocks and supports 80-bit or 128-bit keys with 31 rounds. Standardised in ISO/IEC 29192-2:2019.<br><br>When using CBC mode, the PKCS#7 padding scheme is used.";
this.infoURL = "https://wikipedia.org/wiki/PRESENT_(cipher)";
this.inputType = "string";
this.outputType = "string";