@twin.org/crypto 0.0.3-next.2 → 0.0.3-next.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/helpers/integrityHelper.js +67 -0
- package/dist/es/helpers/integrityHelper.js.map +1 -0
- package/dist/es/index.js +2 -0
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/integrityAlgorithm.js +21 -0
- package/dist/es/models/integrityAlgorithm.js.map +1 -0
- package/dist/es/passwords/passwordGenerator.js +70 -12
- package/dist/es/passwords/passwordGenerator.js.map +1 -1
- package/dist/es/passwords/passwordValidator.js +68 -4
- package/dist/es/passwords/passwordValidator.js.map +1 -1
- package/dist/types/helpers/integrityHelper.d.ts +26 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/models/integrityAlgorithm.d.ts +21 -0
- package/dist/types/passwords/passwordGenerator.d.ts +13 -2
- package/dist/types/passwords/passwordValidator.d.ts +34 -2
- package/docs/changelog.md +418 -0
- package/docs/reference/classes/IntegrityHelper.md +85 -0
- package/docs/reference/classes/PasswordGenerator.md +38 -2
- package/docs/reference/classes/PasswordValidator.md +115 -2
- package/docs/reference/index.md +3 -0
- package/docs/reference/type-aliases/IntegrityAlgorithm.md +5 -0
- package/docs/reference/variables/IntegrityAlgorithm.md +25 -0
- package/package.json +3 -3
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
// Copyright 2026 IOTA Stiftung.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0.
|
|
3
|
+
import { Converter, Guards } from "@twin.org/core";
|
|
4
|
+
import { Sha256 } from "../hashes/sha256.js";
|
|
5
|
+
import { Sha512 } from "../hashes/sha512.js";
|
|
6
|
+
import { IntegrityAlgorithm } from "../models/integrityAlgorithm.js";
|
|
7
|
+
/**
|
|
8
|
+
* Helper class for creating integrity signatures.
|
|
9
|
+
* @see https://www.w3.org/TR/SRI/
|
|
10
|
+
*/
|
|
11
|
+
export class IntegrityHelper {
|
|
12
|
+
/**
|
|
13
|
+
* Runtime name for the class.
|
|
14
|
+
*/
|
|
15
|
+
static CLASS_NAME = "IntegrityHelper";
|
|
16
|
+
/**
|
|
17
|
+
* Generate an integrity signature for the given content using the specified hash algorithm.
|
|
18
|
+
* @param type The hash algorithm to use, either "sha256", "sha384" or "sha512".
|
|
19
|
+
* @param content The content to hash as a Uint8Array.
|
|
20
|
+
* @returns The integrity signature in the format "type-base64hash".
|
|
21
|
+
*/
|
|
22
|
+
static generate(type, content) {
|
|
23
|
+
Guards.arrayOneOf(IntegrityHelper.CLASS_NAME, "type", type, Object.values(IntegrityAlgorithm));
|
|
24
|
+
Guards.uint8Array(IntegrityHelper.CLASS_NAME, "content", content);
|
|
25
|
+
return `${type}-${IntegrityHelper.generateHash(type, content)}`;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Verify an integrity signature for the given content.
|
|
29
|
+
* @param integrity The integrity signature in the format "type-base64hash".
|
|
30
|
+
* @param content The content to hash as a Uint8Array.
|
|
31
|
+
* @returns True if the integrity signature matches the content.
|
|
32
|
+
* @throws If the integrity signature is invalid.
|
|
33
|
+
*/
|
|
34
|
+
static verify(integrity, content) {
|
|
35
|
+
Guards.stringValue(IntegrityHelper.CLASS_NAME, "integrity", integrity);
|
|
36
|
+
Guards.uint8Array(IntegrityHelper.CLASS_NAME, "content", content);
|
|
37
|
+
const parts = integrity.split("-");
|
|
38
|
+
if (parts.length !== 2) {
|
|
39
|
+
return false;
|
|
40
|
+
}
|
|
41
|
+
const [type, hash] = parts;
|
|
42
|
+
Guards.arrayOneOf(IntegrityHelper.CLASS_NAME, "type", type, Object.values(IntegrityAlgorithm));
|
|
43
|
+
Guards.stringValue(IntegrityHelper.CLASS_NAME, "hash", hash);
|
|
44
|
+
return IntegrityHelper.generateHash(type, content) === hash;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Generate a hash for the given content using the specified type.
|
|
48
|
+
* @param type The hash algorithm to use, either "sha256", "sha384" or "sha512".
|
|
49
|
+
* @param content The content to hash as a Uint8Array.
|
|
50
|
+
* @returns The integrity signature in the format "type-base64hash".
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
static generateHash(type, content) {
|
|
54
|
+
let hash;
|
|
55
|
+
if (type === IntegrityAlgorithm.Sha384) {
|
|
56
|
+
hash = Sha512.sum384(content);
|
|
57
|
+
}
|
|
58
|
+
else if (type === IntegrityAlgorithm.Sha512) {
|
|
59
|
+
hash = Sha512.sum512(content);
|
|
60
|
+
}
|
|
61
|
+
else {
|
|
62
|
+
hash = Sha256.sum256(content);
|
|
63
|
+
}
|
|
64
|
+
return Converter.bytesToBase64(hash);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
//# sourceMappingURL=integrityHelper.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"integrityHelper.js","sourceRoot":"","sources":["../../../src/helpers/integrityHelper.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAEnD,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAC7C,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAC7C,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE;;;GAGG;AACH,MAAM,OAAO,eAAe;IAC3B;;OAEG;IACI,MAAM,CAAU,UAAU,qBAAqC;IAEtE;;;;;OAKG;IACI,MAAM,CAAC,QAAQ,CAAC,IAAwB,EAAE,OAAmB;QACnE,MAAM,CAAC,UAAU,CAChB,eAAe,CAAC,UAAU,UAE1B,IAAI,EACJ,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,CACjC,CAAC;QACF,MAAM,CAAC,UAAU,CAAC,eAAe,CAAC,UAAU,aAAmB,OAAO,CAAC,CAAC;QAExE,OAAO,GAAG,IAAI,IAAI,eAAe,CAAC,YAAY,CAAC,IAAI,EAAE,OAAO,CAAC,EAAE,CAAC;IACjE,CAAC;IAED;;;;;;OAMG;IACI,MAAM,CAAC,MAAM,CAAC,SAAiB,EAAE,OAAmB;QAC1D,MAAM,CAAC,WAAW,CAAC,eAAe,CAAC,UAAU,eAAqB,SAAS,CAAC,CAAC;QAC7E,MAAM,CAAC,UAAU,CAAC,eAAe,CAAC,UAAU,aAAmB,OAAO,CAAC,CAAC;QAExE,MAAM,KAAK,GAAG,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QACnC,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YACxB,OAAO,KAAK,CAAC;QACd,CAAC;QAED,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,KAAK,CAAC;QAE3B,MAAM,CAAC,UAAU,CAChB,eAAe,CAAC,UAAU,UAE1B,IAA0B,EAC1B,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,CACjC,CAAC;QACF,MAAM,CAAC,WAAW,CAAC,eAAe,CAAC,UAAU,UAAgB,IAAI,CAAC,CAAC;QAEnE,OAAO,eAAe,CAAC,YAAY,CAAC,IAA0B,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;IACnF,CAAC;IAED;;;;;;OAMG;IACK,MAAM,CAAC,YAAY,CAAC,IAAwB,EAAE,OAAmB;QACxE,IAAI,IAAI,CAAC;QACT,IAAI,IAAI,KAAK,kBAAkB,CAAC,MAAM,EAAE,CAAC;YACxC,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QAC/B,CAAC;aAAM,IAAI,IAAI,KAAK,kBAAkB,CAAC,MAAM,EAAE,CAAC;YAC/C,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QAC/B,CAAC;aAAM,CAAC;YACP,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QAC/B,CAAC;QACD,OAAO,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;IACtC,CAAC","sourcesContent":["// Copyright 2026 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport { Converter, Guards } from \"@twin.org/core\";\nimport { nameof } from \"@twin.org/nameof\";\nimport { Sha256 } from \"../hashes/sha256.js\";\nimport { Sha512 } from \"../hashes/sha512.js\";\nimport { IntegrityAlgorithm } from \"../models/integrityAlgorithm.js\";\n\n/**\n * Helper class for creating integrity signatures.\n * @see https://www.w3.org/TR/SRI/\n */\nexport class IntegrityHelper {\n\t/**\n\t * Runtime name for the class.\n\t */\n\tpublic static readonly CLASS_NAME: string = nameof<IntegrityHelper>();\n\n\t/**\n\t * Generate an integrity signature for the given content using the specified hash algorithm.\n\t * @param type The hash algorithm to use, either \"sha256\", \"sha384\" or \"sha512\".\n\t * @param content The content to hash as a Uint8Array.\n\t * @returns The integrity signature in the format \"type-base64hash\".\n\t */\n\tpublic static generate(type: IntegrityAlgorithm, content: Uint8Array): string {\n\t\tGuards.arrayOneOf(\n\t\t\tIntegrityHelper.CLASS_NAME,\n\t\t\tnameof(type),\n\t\t\ttype,\n\t\t\tObject.values(IntegrityAlgorithm)\n\t\t);\n\t\tGuards.uint8Array(IntegrityHelper.CLASS_NAME, nameof(content), content);\n\n\t\treturn `${type}-${IntegrityHelper.generateHash(type, content)}`;\n\t}\n\n\t/**\n\t * Verify an integrity signature for the given content.\n\t * @param integrity The integrity signature in the format \"type-base64hash\".\n\t * @param content The content to hash as a Uint8Array.\n\t * @returns True if the integrity signature matches the content.\n\t * @throws If the integrity signature is invalid.\n\t */\n\tpublic static verify(integrity: string, content: Uint8Array): boolean {\n\t\tGuards.stringValue(IntegrityHelper.CLASS_NAME, nameof(integrity), integrity);\n\t\tGuards.uint8Array(IntegrityHelper.CLASS_NAME, nameof(content), content);\n\n\t\tconst parts = integrity.split(\"-\");\n\t\tif (parts.length !== 2) {\n\t\t\treturn false;\n\t\t}\n\n\t\tconst [type, hash] = parts;\n\n\t\tGuards.arrayOneOf(\n\t\t\tIntegrityHelper.CLASS_NAME,\n\t\t\tnameof(type),\n\t\t\ttype as IntegrityAlgorithm,\n\t\t\tObject.values(IntegrityAlgorithm)\n\t\t);\n\t\tGuards.stringValue(IntegrityHelper.CLASS_NAME, nameof(hash), hash);\n\n\t\treturn IntegrityHelper.generateHash(type as IntegrityAlgorithm, content) === hash;\n\t}\n\n\t/**\n\t * Generate a hash for the given content using the specified type.\n\t * @param type The hash algorithm to use, either \"sha256\", \"sha384\" or \"sha512\".\n\t * @param content The content to hash as a Uint8Array.\n\t * @returns The integrity signature in the format \"type-base64hash\".\n\t * @internal\n\t */\n\tprivate static generateHash(type: IntegrityAlgorithm, content: Uint8Array): string {\n\t\tlet hash;\n\t\tif (type === IntegrityAlgorithm.Sha384) {\n\t\t\thash = Sha512.sum384(content);\n\t\t} else if (type === IntegrityAlgorithm.Sha512) {\n\t\t\thash = Sha512.sum512(content);\n\t\t} else {\n\t\t\thash = Sha256.sum256(content);\n\t\t}\n\t\treturn Converter.bytesToBase64(hash);\n\t}\n}\n"]}
|
package/dist/es/index.js
CHANGED
|
@@ -17,10 +17,12 @@ export * from "./hashes/sha1.js";
|
|
|
17
17
|
export * from "./hashes/sha256.js";
|
|
18
18
|
export * from "./hashes/sha3.js";
|
|
19
19
|
export * from "./hashes/sha512.js";
|
|
20
|
+
export * from "./helpers/integrityHelper.js";
|
|
20
21
|
export * from "./helpers/pemHelper.js";
|
|
21
22
|
export * from "./keys/bip32Path.js";
|
|
22
23
|
export * from "./keys/bip39.js";
|
|
23
24
|
export * from "./keys/slip0010.js";
|
|
25
|
+
export * from "./models/integrityAlgorithm.js";
|
|
24
26
|
export * from "./models/keyType.js";
|
|
25
27
|
export * from "./otp/hotp.js";
|
|
26
28
|
export * from "./otp/totp.js";
|
package/dist/es/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,kCAAkC,CAAC;AACjD,cAAc,kCAAkC,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nexport * from \"./address/bech32.js\";\nexport * from \"./address/bip44.js\";\nexport * from \"./ciphers/chaCha20Poly1305.js\";\nexport * from \"./curves/ed25519.js\";\nexport * from \"./curves/secp256k1.js\";\nexport * from \"./curves/x25519.js\";\nexport * from \"./curves/zip215.js\";\nexport * from \"./hashes/blake2b.js\";\nexport * from \"./hashes/blake3.js\";\nexport * from \"./hashes/hmacSha1.js\";\nexport * from \"./hashes/hmacSha256.js\";\nexport * from \"./hashes/hmacSha512.js\";\nexport * from \"./hashes/pbkdf2.js\";\nexport * from \"./hashes/sha1.js\";\nexport * from \"./hashes/sha256.js\";\nexport * from \"./hashes/sha3.js\";\nexport * from \"./hashes/sha512.js\";\nexport * from \"./helpers/pemHelper.js\";\nexport * from \"./keys/bip32Path.js\";\nexport * from \"./keys/bip39.js\";\nexport * from \"./keys/slip0010.js\";\nexport * from \"./models/keyType.js\";\nexport * from \"./otp/hotp.js\";\nexport * from \"./otp/totp.js\";\nexport * from \"./passwords/passwordGenerator.js\";\nexport * from \"./passwords/passwordValidator.js\";\n"]}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,kCAAkC,CAAC;AACjD,cAAc,kCAAkC,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nexport * from \"./address/bech32.js\";\nexport * from \"./address/bip44.js\";\nexport * from \"./ciphers/chaCha20Poly1305.js\";\nexport * from \"./curves/ed25519.js\";\nexport * from \"./curves/secp256k1.js\";\nexport * from \"./curves/x25519.js\";\nexport * from \"./curves/zip215.js\";\nexport * from \"./hashes/blake2b.js\";\nexport * from \"./hashes/blake3.js\";\nexport * from \"./hashes/hmacSha1.js\";\nexport * from \"./hashes/hmacSha256.js\";\nexport * from \"./hashes/hmacSha512.js\";\nexport * from \"./hashes/pbkdf2.js\";\nexport * from \"./hashes/sha1.js\";\nexport * from \"./hashes/sha256.js\";\nexport * from \"./hashes/sha3.js\";\nexport * from \"./hashes/sha512.js\";\nexport * from \"./helpers/integrityHelper.js\";\nexport * from \"./helpers/pemHelper.js\";\nexport * from \"./keys/bip32Path.js\";\nexport * from \"./keys/bip39.js\";\nexport * from \"./keys/slip0010.js\";\nexport * from \"./models/integrityAlgorithm.js\";\nexport * from \"./models/keyType.js\";\nexport * from \"./otp/hotp.js\";\nexport * from \"./otp/totp.js\";\nexport * from \"./passwords/passwordGenerator.js\";\nexport * from \"./passwords/passwordValidator.js\";\n"]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// Copyright 2024 IOTA Stiftung.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0.
|
|
3
|
+
/**
|
|
4
|
+
* The names of the integrity algorithms.
|
|
5
|
+
*/
|
|
6
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
7
|
+
export const IntegrityAlgorithm = {
|
|
8
|
+
/**
|
|
9
|
+
* Sha256.
|
|
10
|
+
*/
|
|
11
|
+
Sha256: "sha256",
|
|
12
|
+
/**
|
|
13
|
+
* Sha384.
|
|
14
|
+
*/
|
|
15
|
+
Sha384: "sha384",
|
|
16
|
+
/**
|
|
17
|
+
* Sha512.
|
|
18
|
+
*/
|
|
19
|
+
Sha512: "sha512"
|
|
20
|
+
};
|
|
21
|
+
//# sourceMappingURL=integrityAlgorithm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"integrityAlgorithm.js","sourceRoot":"","sources":["../../../src/models/integrityAlgorithm.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,kBAAkB,GAAG;IACjC;;OAEG;IACH,MAAM,EAAE,QAAQ;IAEhB;;OAEG;IACH,MAAM,EAAE,QAAQ;IAEhB;;OAEG;IACH,MAAM,EAAE,QAAQ;CACP,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * The names of the integrity algorithms.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport const IntegrityAlgorithm = {\n\t/**\n\t * Sha256.\n\t */\n\tSha256: \"sha256\",\n\n\t/**\n\t * Sha384.\n\t */\n\tSha384: \"sha384\",\n\n\t/**\n\t * Sha512.\n\t */\n\tSha512: \"sha512\"\n} as const;\n\n/**\n * Integrity algorithms.\n */\nexport type IntegrityAlgorithm = (typeof IntegrityAlgorithm)[keyof typeof IntegrityAlgorithm];\n"]}
|
|
@@ -1,28 +1,86 @@
|
|
|
1
1
|
// Copyright 2024 IOTA Stiftung.
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0.
|
|
3
|
-
import { RandomHelper } from "@twin.org/core";
|
|
3
|
+
import { Converter, Guards, RandomHelper } from "@twin.org/core";
|
|
4
|
+
import { Blake2b } from "../hashes/blake2b.js";
|
|
4
5
|
/**
|
|
5
6
|
* Generate random passwords.
|
|
6
7
|
*/
|
|
7
8
|
export class PasswordGenerator {
|
|
9
|
+
/**
|
|
10
|
+
* Runtime name for the class.
|
|
11
|
+
*/
|
|
12
|
+
static CLASS_NAME = "PasswordGenerator";
|
|
13
|
+
/**
|
|
14
|
+
* The minimum password length, 15 to match owasp rules.
|
|
15
|
+
* @see https://www.owasp.org/index.php/Authentication_Cheat_Sheet#Implement_Proper_Password_Strength_Controls .
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
static _DEFAULT_MIN_PASSWORD_LENGTH = 15;
|
|
8
19
|
/**
|
|
9
20
|
* Generate a password of given length.
|
|
10
|
-
* @param length The length of the password to generate.
|
|
21
|
+
* @param length The length of the password to generate, default to 15.
|
|
11
22
|
* @returns The random password.
|
|
12
23
|
*/
|
|
13
|
-
static generate(length) {
|
|
14
|
-
const
|
|
15
|
-
const
|
|
24
|
+
static generate(length = PasswordGenerator._DEFAULT_MIN_PASSWORD_LENGTH) {
|
|
25
|
+
const lower = "abcdefghijklmnopqrstuvwxyz";
|
|
26
|
+
const upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
27
|
+
const digits = "0123456789";
|
|
28
|
+
const specials = "!#$£%^&*+=@~?}";
|
|
29
|
+
const alphabet = `${lower}${upper}`;
|
|
30
|
+
const allChars = `${alphabet}${digits}${specials}`;
|
|
31
|
+
const targetLength = Math.max(length, PasswordGenerator._DEFAULT_MIN_PASSWORD_LENGTH);
|
|
16
32
|
const chars = [];
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
chars.
|
|
33
|
+
// Ensure required character classes are present.
|
|
34
|
+
PasswordGenerator.pushChar(chars, lower);
|
|
35
|
+
PasswordGenerator.pushChar(chars, upper);
|
|
36
|
+
PasswordGenerator.pushChar(chars, digits);
|
|
37
|
+
PasswordGenerator.pushChar(chars, specials);
|
|
38
|
+
while (chars.length < targetLength) {
|
|
39
|
+
const charSet = chars.length === 0 ? alphabet : allChars;
|
|
40
|
+
PasswordGenerator.pushChar(chars, charSet);
|
|
24
41
|
}
|
|
25
42
|
return chars.join("");
|
|
26
43
|
}
|
|
44
|
+
/**
|
|
45
|
+
* Hash the password for the user.
|
|
46
|
+
* @param passwordBytes The password bytes.
|
|
47
|
+
* @param saltBytes The salt bytes.
|
|
48
|
+
* @returns The hashed password.
|
|
49
|
+
*/
|
|
50
|
+
static async hashPassword(passwordBytes, saltBytes) {
|
|
51
|
+
Guards.uint8Array(PasswordGenerator.CLASS_NAME, "passwordBytes", passwordBytes);
|
|
52
|
+
Guards.uint8Array(PasswordGenerator.CLASS_NAME, "saltBytes", saltBytes);
|
|
53
|
+
const combined = new Uint8Array(saltBytes.length + passwordBytes.length);
|
|
54
|
+
combined.set(saltBytes);
|
|
55
|
+
combined.set(passwordBytes, saltBytes.length);
|
|
56
|
+
const hashedPassword = Blake2b.sum256(combined);
|
|
57
|
+
return Converter.bytesToBase64(hashedPassword);
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Get a random character from the given character set.
|
|
61
|
+
* @param charSet The character set to get a random character from.
|
|
62
|
+
* @returns A random character from the given character set.
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
65
|
+
static getRandomChar(charSet) {
|
|
66
|
+
let b = 0;
|
|
67
|
+
do {
|
|
68
|
+
b = RandomHelper.generate(1)[0];
|
|
69
|
+
} while (b >= charSet.length);
|
|
70
|
+
return charSet[b];
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Push a random character from the given character set to the chars array, ensuring no three repeated characters in a row.
|
|
74
|
+
* @param chars The array to push the character to.
|
|
75
|
+
* @param charSet The character set to get a random character from.
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
78
|
+
static pushChar(chars, charSet) {
|
|
79
|
+
let next = PasswordGenerator.getRandomChar(charSet);
|
|
80
|
+
while (chars.length >= 2 && next === chars.at(-1) && next === chars.at(-2)) {
|
|
81
|
+
next = PasswordGenerator.getRandomChar(charSet);
|
|
82
|
+
}
|
|
83
|
+
chars.push(next);
|
|
84
|
+
}
|
|
27
85
|
}
|
|
28
86
|
//# sourceMappingURL=passwordGenerator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"passwordGenerator.js","sourceRoot":"","sources":["../../../src/passwords/passwordGenerator.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"passwordGenerator.js","sourceRoot":"","sources":["../../../src/passwords/passwordGenerator.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport { Converter, Guards, RandomHelper } from \"@twin.org/core\";\nimport { nameof } from \"@twin.org/nameof\";\nimport { Blake2b } from \"../hashes/blake2b.js\";\n\n/**\n * Generate random passwords.\n */\nexport class PasswordGenerator {\n\t/**\n\t * Runtime name for the class.\n\t */\n\tpublic static readonly CLASS_NAME: string = nameof<PasswordGenerator>();\n\n\t/**\n\t * The minimum password length, 15 to match owasp rules.\n\t * @see https://www.owasp.org/index.php/Authentication_Cheat_Sheet#Implement_Proper_Password_Strength_Controls .\n\t * @internal\n\t */\n\tprivate static readonly _DEFAULT_MIN_PASSWORD_LENGTH: number = 15;\n\n\t/**\n\t * Generate a password of given length.\n\t * @param length The length of the password to generate, default to 15.\n\t * @returns The random password.\n\t */\n\tpublic static generate(length: number = PasswordGenerator._DEFAULT_MIN_PASSWORD_LENGTH): string {\n\t\tconst lower = \"abcdefghijklmnopqrstuvwxyz\";\n\t\tconst upper = \"ABCDEFGHIJKLMNOPQRSTUVWXYZ\";\n\t\tconst digits = \"0123456789\";\n\t\tconst specials = \"!#$£%^&*+=@~?}\";\n\t\tconst alphabet = `${lower}${upper}`;\n\t\tconst allChars = `${alphabet}${digits}${specials}`;\n\n\t\tconst targetLength = Math.max(length, PasswordGenerator._DEFAULT_MIN_PASSWORD_LENGTH);\n\t\tconst chars: string[] = [];\n\n\t\t// Ensure required character classes are present.\n\t\tPasswordGenerator.pushChar(chars, lower);\n\t\tPasswordGenerator.pushChar(chars, upper);\n\t\tPasswordGenerator.pushChar(chars, digits);\n\t\tPasswordGenerator.pushChar(chars, specials);\n\n\t\twhile (chars.length < targetLength) {\n\t\t\tconst charSet = chars.length === 0 ? alphabet : allChars;\n\t\t\tPasswordGenerator.pushChar(chars, charSet);\n\t\t}\n\n\t\treturn chars.join(\"\");\n\t}\n\n\t/**\n\t * Hash the password for the user.\n\t * @param passwordBytes The password bytes.\n\t * @param saltBytes The salt bytes.\n\t * @returns The hashed password.\n\t */\n\tpublic static async hashPassword(\n\t\tpasswordBytes: Uint8Array,\n\t\tsaltBytes: Uint8Array\n\t): Promise<string> {\n\t\tGuards.uint8Array(PasswordGenerator.CLASS_NAME, nameof(passwordBytes), passwordBytes);\n\t\tGuards.uint8Array(PasswordGenerator.CLASS_NAME, nameof(saltBytes), saltBytes);\n\n\t\tconst combined = new Uint8Array(saltBytes.length + passwordBytes.length);\n\t\tcombined.set(saltBytes);\n\t\tcombined.set(passwordBytes, saltBytes.length);\n\n\t\tconst hashedPassword = Blake2b.sum256(combined);\n\n\t\treturn Converter.bytesToBase64(hashedPassword);\n\t}\n\n\t/**\n\t * Get a random character from the given character set.\n\t * @param charSet The character set to get a random character from.\n\t * @returns A random character from the given character set.\n\t * @internal\n\t */\n\tprivate static getRandomChar(charSet: string): string {\n\t\tlet b = 0;\n\t\tdo {\n\t\t\tb = RandomHelper.generate(1)[0];\n\t\t} while (b >= charSet.length);\n\t\treturn charSet[b];\n\t}\n\n\t/**\n\t * Push a random character from the given character set to the chars array, ensuring no three repeated characters in a row.\n\t * @param chars The array to push the character to.\n\t * @param charSet The character set to get a random character from.\n\t * @internal\n\t */\n\tprivate static pushChar(chars: string[], charSet: string): void {\n\t\tlet next = PasswordGenerator.getRandomChar(charSet);\n\t\twhile (chars.length >= 2 && next === chars.at(-1) && next === chars.at(-2)) {\n\t\t\tnext = PasswordGenerator.getRandomChar(charSet);\n\t\t}\n\t\tchars.push(next);\n\t}\n}\n"]}
|
|
@@ -1,25 +1,35 @@
|
|
|
1
1
|
// Copyright 2024 IOTA Stiftung.
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0.
|
|
3
|
-
import { Validation } from "@twin.org/core";
|
|
3
|
+
import { Converter, Guards, Validation } from "@twin.org/core";
|
|
4
4
|
/**
|
|
5
5
|
* Test password strength.
|
|
6
|
-
*
|
|
6
|
+
* @see https://www.owasp.org/index.php/Authentication_Cheat_Sheet#Implement_Proper_Password_Strength_Controls .
|
|
7
7
|
*/
|
|
8
8
|
export class PasswordValidator {
|
|
9
|
+
/**
|
|
10
|
+
* Runtime name for the class.
|
|
11
|
+
*/
|
|
12
|
+
static CLASS_NAME = "PasswordValidator";
|
|
13
|
+
/**
|
|
14
|
+
* The minimum password length, 15 to match owasp rules.
|
|
15
|
+
* @see https://www.owasp.org/index.php/Authentication_Cheat_Sheet#Implement_Proper_Password_Strength_Controls .
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
static _DEFAULT_MIN_PASSWORD_LENGTH = 15;
|
|
9
19
|
/**
|
|
10
20
|
* Test the strength of the password.
|
|
11
21
|
* @param property The name of the property.
|
|
12
22
|
* @param password The password to test.
|
|
13
23
|
* @param failures The list of failures to add to.
|
|
14
24
|
* @param options Options to configure the testing.
|
|
15
|
-
* @param options.minLength The minimum length of the password, defaults to 8.
|
|
25
|
+
* @param options.minLength The minimum length of the password, defaults to 15, can be 8 if MFA is enabled.
|
|
16
26
|
* @param options.maxLength The minimum length of the password, defaults to 128.
|
|
17
27
|
* @param options.minPhraseLength The minimum length of the password for it to be considered a pass phrase.
|
|
18
28
|
*/
|
|
19
29
|
static validate(property, password, failures, options) {
|
|
20
30
|
const isString = Validation.stringValue(property, password, failures);
|
|
21
31
|
if (isString) {
|
|
22
|
-
const minLength = options?.minLength ??
|
|
32
|
+
const minLength = options?.minLength ?? PasswordValidator._DEFAULT_MIN_PASSWORD_LENGTH;
|
|
23
33
|
if (password.length < minLength) {
|
|
24
34
|
failures.push({
|
|
25
35
|
property,
|
|
@@ -77,5 +87,59 @@ export class PasswordValidator {
|
|
|
77
87
|
}
|
|
78
88
|
}
|
|
79
89
|
}
|
|
90
|
+
/**
|
|
91
|
+
* Validate the password against security policy.
|
|
92
|
+
* @param password The password to validate.
|
|
93
|
+
* @param options Options to configure the testing.
|
|
94
|
+
* @param options.minLength The minimum length of the password, defaults to 15.
|
|
95
|
+
* @param options.maxLength The minimum length of the password, defaults to 128.
|
|
96
|
+
* @param options.minPhraseLength The minimum length of the password for it to be considered a pass phrase.
|
|
97
|
+
* @throws Error if the password does not meet the requirements.
|
|
98
|
+
*/
|
|
99
|
+
static validatePassword(password, options) {
|
|
100
|
+
Guards.stringValue(PasswordValidator.CLASS_NAME, "password", password);
|
|
101
|
+
const failures = [];
|
|
102
|
+
PasswordValidator.validate("password", password, failures, options);
|
|
103
|
+
Validation.asValidationError(PasswordValidator.CLASS_NAME, "password", failures);
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* Compare two password byte arrays in constant time to prevent timing attacks.
|
|
107
|
+
* @param hashedPasswordBytes The computed password bytes to compare.
|
|
108
|
+
* @param storedPasswordBytes The stored password bytes to compare against.
|
|
109
|
+
* @returns True if the bytes match, false otherwise.
|
|
110
|
+
*/
|
|
111
|
+
static comparePasswordBytes(hashedPasswordBytes, storedPasswordBytes) {
|
|
112
|
+
Guards.uint8Array(PasswordValidator.CLASS_NAME, "hashedPasswordBytes", hashedPasswordBytes);
|
|
113
|
+
Guards.uint8Array(PasswordValidator.CLASS_NAME, "storedPasswordBytes", storedPasswordBytes);
|
|
114
|
+
// Return immediately if lengths differ
|
|
115
|
+
if (hashedPasswordBytes.length !== storedPasswordBytes.length) {
|
|
116
|
+
return false;
|
|
117
|
+
}
|
|
118
|
+
// Compare bytes in constant time
|
|
119
|
+
let result = 0;
|
|
120
|
+
for (let i = 0; i < hashedPasswordBytes.length; i++) {
|
|
121
|
+
// eslint-disable-next-line no-bitwise
|
|
122
|
+
result |= hashedPasswordBytes[i] ^ storedPasswordBytes[i];
|
|
123
|
+
}
|
|
124
|
+
return result === 0;
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* Compare two hashed passwords in constant time to prevent timing attacks.
|
|
128
|
+
* @param hashedPassword The computed hash to compare.
|
|
129
|
+
* @param storedPassword The stored hash to compare against.
|
|
130
|
+
* @returns True if the hashes match, false otherwise.
|
|
131
|
+
*/
|
|
132
|
+
static comparePasswordHashes(hashedPassword, storedPassword) {
|
|
133
|
+
Guards.stringValue(PasswordValidator.CLASS_NAME, "hashedPassword", hashedPassword);
|
|
134
|
+
Guards.stringValue(PasswordValidator.CLASS_NAME, "storedPassword", storedPassword);
|
|
135
|
+
// Return immediately if lengths differ
|
|
136
|
+
if (hashedPassword.length !== storedPassword.length) {
|
|
137
|
+
return false;
|
|
138
|
+
}
|
|
139
|
+
// Decode base64 strings to bytes
|
|
140
|
+
const hashedBytes = Converter.base64ToBytes(hashedPassword);
|
|
141
|
+
const storedBytes = Converter.base64ToBytes(storedPassword);
|
|
142
|
+
return PasswordValidator.comparePasswordBytes(hashedBytes, storedBytes);
|
|
143
|
+
}
|
|
80
144
|
}
|
|
81
145
|
//# sourceMappingURL=passwordValidator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"passwordValidator.js","sourceRoot":"","sources":["../../../src/passwords/passwordValidator.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,EAA2B,UAAU,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"passwordValidator.js","sourceRoot":"","sources":["../../../src/passwords/passwordValidator.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport { Converter, Guards, type IValidationFailure, Validation } from \"@twin.org/core\";\nimport { nameof } from \"@twin.org/nameof\";\n\n/**\n * Test password strength.\n * @see https://www.owasp.org/index.php/Authentication_Cheat_Sheet#Implement_Proper_Password_Strength_Controls .\n */\nexport class PasswordValidator {\n\t/**\n\t * Runtime name for the class.\n\t */\n\tpublic static readonly CLASS_NAME: string = nameof<PasswordValidator>();\n\n\t/**\n\t * The minimum password length, 15 to match owasp rules.\n\t * @see https://www.owasp.org/index.php/Authentication_Cheat_Sheet#Implement_Proper_Password_Strength_Controls .\n\t * @internal\n\t */\n\tprivate static readonly _DEFAULT_MIN_PASSWORD_LENGTH: number = 15;\n\n\t/**\n\t * Test the strength of the password.\n\t * @param property The name of the property.\n\t * @param password The password to test.\n\t * @param failures The list of failures to add to.\n\t * @param options Options to configure the testing.\n\t * @param options.minLength The minimum length of the password, defaults to 15, can be 8 if MFA is enabled.\n\t * @param options.maxLength The minimum length of the password, defaults to 128.\n\t * @param options.minPhraseLength The minimum length of the password for it to be considered a pass phrase.\n\t */\n\tpublic static validate(\n\t\tproperty: string,\n\t\tpassword: string,\n\t\tfailures: IValidationFailure[],\n\t\toptions?: {\n\t\t\tminLength?: number;\n\t\t\tmaxLength?: number;\n\t\t\tminPhraseLength?: number;\n\t\t}\n\t): void {\n\t\tconst isString = Validation.stringValue(property, password, failures);\n\n\t\tif (isString) {\n\t\t\tconst minLength = options?.minLength ?? PasswordValidator._DEFAULT_MIN_PASSWORD_LENGTH;\n\t\t\tif (password.length < minLength) {\n\t\t\t\tfailures.push({\n\t\t\t\t\tproperty,\n\t\t\t\t\treason: \"validation.minLengthRequired\",\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tminLength,\n\t\t\t\t\t\tactualLength: password.length\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tconst maxLength = options?.maxLength ?? 128;\n\t\t\tif (password.length > maxLength) {\n\t\t\t\tfailures.push({\n\t\t\t\t\tproperty,\n\t\t\t\t\treason: \"validation.maxLengthRequired\",\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tmaxLength,\n\t\t\t\t\t\tactualLength: password.length\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tif (/(.)\\1{2,}/.test(password)) {\n\t\t\t\tfailures.push({\n\t\t\t\t\tproperty,\n\t\t\t\t\treason: \"validation.repeatedCharacters\"\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// If this looks like a phrase then apply additional rules\n\t\t\tconst minPhraseLength = options?.minPhraseLength ?? 20;\n\n\t\t\tif (password.length < minPhraseLength || !password.includes(\" \")) {\n\t\t\t\tif (!/[a-z]/.test(password)) {\n\t\t\t\t\tfailures.push({\n\t\t\t\t\t\tproperty,\n\t\t\t\t\t\treason: \"validation.atLeastOneLowerCase\"\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif (!/[A-Z]/.test(password)) {\n\t\t\t\t\tfailures.push({\n\t\t\t\t\t\tproperty,\n\t\t\t\t\t\treason: \"validation.atLeastOneUpperCase\"\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif (!/\\d/.test(password)) {\n\t\t\t\t\tfailures.push({\n\t\t\t\t\t\tproperty,\n\t\t\t\t\t\treason: \"validation.atLeastOneNumber\"\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif (!/[^\\dA-Za-z]/.test(password)) {\n\t\t\t\t\tfailures.push({\n\t\t\t\t\t\tproperty,\n\t\t\t\t\t\treason: \"validation.atLeastOneSpecialChar\"\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Validate the password against security policy.\n\t * @param password The password to validate.\n\t * @param options Options to configure the testing.\n\t * @param options.minLength The minimum length of the password, defaults to 15.\n\t * @param options.maxLength The minimum length of the password, defaults to 128.\n\t * @param options.minPhraseLength The minimum length of the password for it to be considered a pass phrase.\n\t * @throws Error if the password does not meet the requirements.\n\t */\n\tpublic static validatePassword(\n\t\tpassword: string,\n\t\toptions?: {\n\t\t\tminLength?: number;\n\t\t\tmaxLength?: number;\n\t\t\tminPhraseLength?: number;\n\t\t}\n\t): void {\n\t\tGuards.stringValue(PasswordValidator.CLASS_NAME, nameof(password), password);\n\n\t\tconst failures: IValidationFailure[] = [];\n\n\t\tPasswordValidator.validate(nameof(password), password, failures, options);\n\n\t\tValidation.asValidationError(PasswordValidator.CLASS_NAME, nameof(password), failures);\n\t}\n\n\t/**\n\t * Compare two password byte arrays in constant time to prevent timing attacks.\n\t * @param hashedPasswordBytes The computed password bytes to compare.\n\t * @param storedPasswordBytes The stored password bytes to compare against.\n\t * @returns True if the bytes match, false otherwise.\n\t */\n\tpublic static comparePasswordBytes(\n\t\thashedPasswordBytes: Uint8Array,\n\t\tstoredPasswordBytes: Uint8Array\n\t): boolean {\n\t\tGuards.uint8Array(\n\t\t\tPasswordValidator.CLASS_NAME,\n\t\t\tnameof(hashedPasswordBytes),\n\t\t\thashedPasswordBytes\n\t\t);\n\t\tGuards.uint8Array(\n\t\t\tPasswordValidator.CLASS_NAME,\n\t\t\tnameof(storedPasswordBytes),\n\t\t\tstoredPasswordBytes\n\t\t);\n\n\t\t// Return immediately if lengths differ\n\t\tif (hashedPasswordBytes.length !== storedPasswordBytes.length) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Compare bytes in constant time\n\t\tlet result = 0;\n\t\tfor (let i = 0; i < hashedPasswordBytes.length; i++) {\n\t\t\t// eslint-disable-next-line no-bitwise\n\t\t\tresult |= hashedPasswordBytes[i] ^ storedPasswordBytes[i];\n\t\t}\n\n\t\treturn result === 0;\n\t}\n\n\t/**\n\t * Compare two hashed passwords in constant time to prevent timing attacks.\n\t * @param hashedPassword The computed hash to compare.\n\t * @param storedPassword The stored hash to compare against.\n\t * @returns True if the hashes match, false otherwise.\n\t */\n\tpublic static comparePasswordHashes(hashedPassword: string, storedPassword: string): boolean {\n\t\tGuards.stringValue(PasswordValidator.CLASS_NAME, nameof(hashedPassword), hashedPassword);\n\t\tGuards.stringValue(PasswordValidator.CLASS_NAME, nameof(storedPassword), storedPassword);\n\n\t\t// Return immediately if lengths differ\n\t\tif (hashedPassword.length !== storedPassword.length) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Decode base64 strings to bytes\n\t\tconst hashedBytes = Converter.base64ToBytes(hashedPassword);\n\t\tconst storedBytes = Converter.base64ToBytes(storedPassword);\n\n\t\treturn PasswordValidator.comparePasswordBytes(hashedBytes, storedBytes);\n\t}\n}\n"]}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { IntegrityAlgorithm } from "../models/integrityAlgorithm.js";
|
|
2
|
+
/**
|
|
3
|
+
* Helper class for creating integrity signatures.
|
|
4
|
+
* @see https://www.w3.org/TR/SRI/
|
|
5
|
+
*/
|
|
6
|
+
export declare class IntegrityHelper {
|
|
7
|
+
/**
|
|
8
|
+
* Runtime name for the class.
|
|
9
|
+
*/
|
|
10
|
+
static readonly CLASS_NAME: string;
|
|
11
|
+
/**
|
|
12
|
+
* Generate an integrity signature for the given content using the specified hash algorithm.
|
|
13
|
+
* @param type The hash algorithm to use, either "sha256", "sha384" or "sha512".
|
|
14
|
+
* @param content The content to hash as a Uint8Array.
|
|
15
|
+
* @returns The integrity signature in the format "type-base64hash".
|
|
16
|
+
*/
|
|
17
|
+
static generate(type: IntegrityAlgorithm, content: Uint8Array): string;
|
|
18
|
+
/**
|
|
19
|
+
* Verify an integrity signature for the given content.
|
|
20
|
+
* @param integrity The integrity signature in the format "type-base64hash".
|
|
21
|
+
* @param content The content to hash as a Uint8Array.
|
|
22
|
+
* @returns True if the integrity signature matches the content.
|
|
23
|
+
* @throws If the integrity signature is invalid.
|
|
24
|
+
*/
|
|
25
|
+
static verify(integrity: string, content: Uint8Array): boolean;
|
|
26
|
+
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -15,10 +15,12 @@ export * from "./hashes/sha1.js";
|
|
|
15
15
|
export * from "./hashes/sha256.js";
|
|
16
16
|
export * from "./hashes/sha3.js";
|
|
17
17
|
export * from "./hashes/sha512.js";
|
|
18
|
+
export * from "./helpers/integrityHelper.js";
|
|
18
19
|
export * from "./helpers/pemHelper.js";
|
|
19
20
|
export * from "./keys/bip32Path.js";
|
|
20
21
|
export * from "./keys/bip39.js";
|
|
21
22
|
export * from "./keys/slip0010.js";
|
|
23
|
+
export * from "./models/integrityAlgorithm.js";
|
|
22
24
|
export * from "./models/keyType.js";
|
|
23
25
|
export * from "./otp/hotp.js";
|
|
24
26
|
export * from "./otp/totp.js";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The names of the integrity algorithms.
|
|
3
|
+
*/
|
|
4
|
+
export declare const IntegrityAlgorithm: {
|
|
5
|
+
/**
|
|
6
|
+
* Sha256.
|
|
7
|
+
*/
|
|
8
|
+
readonly Sha256: "sha256";
|
|
9
|
+
/**
|
|
10
|
+
* Sha384.
|
|
11
|
+
*/
|
|
12
|
+
readonly Sha384: "sha384";
|
|
13
|
+
/**
|
|
14
|
+
* Sha512.
|
|
15
|
+
*/
|
|
16
|
+
readonly Sha512: "sha512";
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Integrity algorithms.
|
|
20
|
+
*/
|
|
21
|
+
export type IntegrityAlgorithm = (typeof IntegrityAlgorithm)[keyof typeof IntegrityAlgorithm];
|
|
@@ -2,10 +2,21 @@
|
|
|
2
2
|
* Generate random passwords.
|
|
3
3
|
*/
|
|
4
4
|
export declare class PasswordGenerator {
|
|
5
|
+
/**
|
|
6
|
+
* Runtime name for the class.
|
|
7
|
+
*/
|
|
8
|
+
static readonly CLASS_NAME: string;
|
|
5
9
|
/**
|
|
6
10
|
* Generate a password of given length.
|
|
7
|
-
* @param length The length of the password to generate.
|
|
11
|
+
* @param length The length of the password to generate, default to 15.
|
|
8
12
|
* @returns The random password.
|
|
9
13
|
*/
|
|
10
|
-
static generate(length
|
|
14
|
+
static generate(length?: number): string;
|
|
15
|
+
/**
|
|
16
|
+
* Hash the password for the user.
|
|
17
|
+
* @param passwordBytes The password bytes.
|
|
18
|
+
* @param saltBytes The salt bytes.
|
|
19
|
+
* @returns The hashed password.
|
|
20
|
+
*/
|
|
21
|
+
static hashPassword(passwordBytes: Uint8Array, saltBytes: Uint8Array): Promise<string>;
|
|
11
22
|
}
|
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
import { type IValidationFailure } from "@twin.org/core";
|
|
2
2
|
/**
|
|
3
3
|
* Test password strength.
|
|
4
|
-
*
|
|
4
|
+
* @see https://www.owasp.org/index.php/Authentication_Cheat_Sheet#Implement_Proper_Password_Strength_Controls .
|
|
5
5
|
*/
|
|
6
6
|
export declare class PasswordValidator {
|
|
7
|
+
/**
|
|
8
|
+
* Runtime name for the class.
|
|
9
|
+
*/
|
|
10
|
+
static readonly CLASS_NAME: string;
|
|
7
11
|
/**
|
|
8
12
|
* Test the strength of the password.
|
|
9
13
|
* @param property The name of the property.
|
|
10
14
|
* @param password The password to test.
|
|
11
15
|
* @param failures The list of failures to add to.
|
|
12
16
|
* @param options Options to configure the testing.
|
|
13
|
-
* @param options.minLength The minimum length of the password, defaults to 8.
|
|
17
|
+
* @param options.minLength The minimum length of the password, defaults to 15, can be 8 if MFA is enabled.
|
|
14
18
|
* @param options.maxLength The minimum length of the password, defaults to 128.
|
|
15
19
|
* @param options.minPhraseLength The minimum length of the password for it to be considered a pass phrase.
|
|
16
20
|
*/
|
|
@@ -19,4 +23,32 @@ export declare class PasswordValidator {
|
|
|
19
23
|
maxLength?: number;
|
|
20
24
|
minPhraseLength?: number;
|
|
21
25
|
}): void;
|
|
26
|
+
/**
|
|
27
|
+
* Validate the password against security policy.
|
|
28
|
+
* @param password The password to validate.
|
|
29
|
+
* @param options Options to configure the testing.
|
|
30
|
+
* @param options.minLength The minimum length of the password, defaults to 15.
|
|
31
|
+
* @param options.maxLength The minimum length of the password, defaults to 128.
|
|
32
|
+
* @param options.minPhraseLength The minimum length of the password for it to be considered a pass phrase.
|
|
33
|
+
* @throws Error if the password does not meet the requirements.
|
|
34
|
+
*/
|
|
35
|
+
static validatePassword(password: string, options?: {
|
|
36
|
+
minLength?: number;
|
|
37
|
+
maxLength?: number;
|
|
38
|
+
minPhraseLength?: number;
|
|
39
|
+
}): void;
|
|
40
|
+
/**
|
|
41
|
+
* Compare two password byte arrays in constant time to prevent timing attacks.
|
|
42
|
+
* @param hashedPasswordBytes The computed password bytes to compare.
|
|
43
|
+
* @param storedPasswordBytes The stored password bytes to compare against.
|
|
44
|
+
* @returns True if the bytes match, false otherwise.
|
|
45
|
+
*/
|
|
46
|
+
static comparePasswordBytes(hashedPasswordBytes: Uint8Array, storedPasswordBytes: Uint8Array): boolean;
|
|
47
|
+
/**
|
|
48
|
+
* Compare two hashed passwords in constant time to prevent timing attacks.
|
|
49
|
+
* @param hashedPassword The computed hash to compare.
|
|
50
|
+
* @param storedPassword The stored hash to compare against.
|
|
51
|
+
* @returns True if the hashes match, false otherwise.
|
|
52
|
+
*/
|
|
53
|
+
static comparePasswordHashes(hashedPassword: string, storedPassword: string): boolean;
|
|
22
54
|
}
|