mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 14:11:02 +01:00
24 lines
570 B
JavaScript
24 lines
570 B
JavaScript
/**
|
|
* OTP HOTP tests.
|
|
*
|
|
* @author bwhitn [brian.m.whitney@outlook.com]
|
|
*
|
|
* @copyright Crown Copyright 2017
|
|
* @license Apache-2.0
|
|
*/
|
|
import TestRegister from "../../lib/TestRegister.mjs";
|
|
|
|
TestRegister.addTests([
|
|
{
|
|
name: "Generate HOTP",
|
|
input: "12345678901234567890",
|
|
expectedOutput: "URI: otpauth://hotp/OTPAuthentication?secret=GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ\n\nPassword: 755224",
|
|
recipeConfig: [
|
|
{
|
|
op: "Generate HOTP",
|
|
args: ["", 32, 6, 0],
|
|
},
|
|
],
|
|
},
|
|
]);
|