diff --git a/README.md b/README.md deleted file mode 100644 index 334d8b2252afc826386347459ca8b8b21ca402bb..0000000000000000000000000000000000000000 --- a/README.md +++ /dev/null @@ -1,13 +0,0 @@ -# js-spectre - -JavaScript implementation of [Spectre](https://spectre.app). - -## Code Quality - -1. `npm run lint` -2. `npm run lint:fix` -3. `npm run test` - -## License - -[GPLv3](LICENSE) - Same as original algorithm \ No newline at end of file diff --git a/eslint.config.js b/eslint.config.js index 143cd670e6e25d7469996aa1e41eb67e08a9958b..25170ccfd3f103c027968d9c64414d29ad81c016 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -3,7 +3,7 @@ import tseslint from "typescript-eslint" import stylistic from "@stylistic/eslint-plugin" export default tseslint.config( - { ignores: ["dist/", "spectre.js"] }, + { ignores: ["dist/"] }, eslint.configs.recommended, tseslint.configs.recommendedTypeChecked, diff --git a/example/index.html b/example/index.html index 0fade851bbc4c830f553a9a29bbe0e62d5a7840a..80a669ff950e50b67dfadcb13172f75e5c066b7d 100644 --- a/example/index.html +++ b/example/index.html @@ -1,4 +1,4 @@ - + @@ -12,11 +12,7 @@
-
+

@@ -43,4 +39,4 @@ if (s === null || $siteKey.value === "") return; const pw = s.site($siteKey.value); $result.innerText = pw; } - + \ No newline at end of file diff --git a/example/sakura.css b/example/sakura.css index 53b47996dc0901c6b6ce7bead96da85b55cacbe5..1297f86ddf91e9e5c9a2e781321c4ddfe796a818 100644 --- a/example/sakura.css +++ b/example/sakura.css @@ -6,8 +6,7 @@ */ /* Body */ html { font-size: 62.5%; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, - "Helvetica Neue", Arial, "Noto Sans", sans-serif; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif; } body { @@ -39,8 +38,7 @@ h4, h5, h6 { line-height: 1.1; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, - "Helvetica Neue", Arial, "Noto Sans", sans-serif; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif; font-weight: 700; margin-top: 3rem; margin-bottom: 1.5rem; @@ -157,7 +155,7 @@ background-color: #f1f1f1; white-space: pre-wrap; } -pre > code { +pre>code { padding: 0; background-color: transparent; white-space: pre; @@ -195,10 +193,10 @@ } .button, button, -input[type="submit"], -input[type="reset"], -input[type="button"], -input[type="file"]::file-selector-button { +input[type=submit], +input[type=reset], +input[type=button], +input[type=file]::file-selector-button { display: inline-block; padding: 5px 10px; text-align: center; @@ -214,20 +212,20 @@ } .button[disabled], button[disabled], -input[type="submit"][disabled], -input[type="reset"][disabled], -input[type="button"][disabled], -input[type="file"]::file-selector-button[disabled] { +input[type=submit][disabled], +input[type=reset][disabled], +input[type=button][disabled], +input[type=file]::file-selector-button[disabled] { cursor: default; opacity: 0.5; } .button:hover, button:hover, -input[type="submit"]:hover, -input[type="reset"]:hover, -input[type="button"]:hover, -input[type="file"]::file-selector-button:hover { +input[type=submit]:hover, +input[type=reset]:hover, +input[type=button]:hover, +input[type=file]::file-selector-button:hover { background-color: #982c61; color: #f9f9f9; outline: 0; @@ -235,10 +233,10 @@ } .button:focus-visible, button:focus-visible, -input[type="submit"]:focus-visible, -input[type="reset"]:focus-visible, -input[type="button"]:focus-visible, -input[type="file"]::file-selector-button:focus-visible { +input[type=submit]:focus-visible, +input[type=reset]:focus-visible, +input[type=button]:focus-visible, +input[type=file]::file-selector-button:focus-visible { outline-style: solid; outline-width: 2px; } @@ -264,7 +262,7 @@ border: 1px solid #1d7484; outline: 0; } -input[type="checkbox"]:focus { +input[type=checkbox]:focus { outline: 1px dotted #1d7484; } @@ -274,4 +272,4 @@ fieldset { display: block; margin-bottom: 0.5rem; font-weight: 600; -} +} \ No newline at end of file diff --git a/lib/spectre.ts b/lib/spectre.ts index ac27e48871ed64b6686e0980a1bef7b413e049af..85880b156b652b2abf36f61015ac25aca7aaf258 100644 --- a/lib/spectre.ts +++ b/lib/spectre.ts @@ -5,10 +5,10 @@ import { sha256 } from "@noble/hashes/sha256" import { characters, Template, templates } from "./template.js" export class Spectre { - private readonly name: string - private readonly secret: string - private readonly scoper: Scoper - private readonly key: Uint8Array + private name: string + private secret: string + private scoper: Scoper + private key: Uint8Array constructor(name: string, secret: string, scoper: Scoper = defaultScoper) { this.name = name diff --git a/package.json b/package.json index 00aaa59de6c2612634d950dff971b22aea92d431..6da8e58952caa113a9f123ef868edfd33b4aa883 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,6 @@ "description": "JS implementation of Spectre", "scripts": { "test": "vitest --run", "lint": "eslint .", - "lint:fix": "npm run lint -- --fix", "build:tsc": "tsc -p tsconfig.build.json", "build:esbuild": "esbuild --target=es2022 --bundle --minify --outfile=spectre.js --global-name=spectre spectre", "build": "npm run build:tsc && npm run build:esbuild" @@ -41,4 +40,4 @@ }, "dependencies": { "@noble/hashes": "^1.7.1" } -} +} \ No newline at end of file diff --git a/tests/index.test.ts b/tests/index.test.ts index 41d23cbd55ac284380927c32f7307c57354efa51..6a7acbbfeceb4daa90b569a8b6f5753f7415e793 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -14,18 +14,14 @@ assert.equal(pw, "Jejr5[RepuSosp") }) it("should generate the custom example password", () => { const scoper = new SimpleScoper("com.jojodev.jolheiser") - const s = new Spectre( - "Robert Lee Mitchell", - "banana colored duckling", - scoper, - ) + const s = new Spectre("Robert Lee Mitchell", "banana colored duckling", scoper) const pw = s.site("jojodev.com", Template.MAXIMUM, 2, Scope.IDENTIFICATION) assert.equal(pw, "Ig^JIcxD!*)TbefJBi6-") }) }) describe("spectre", () => { - const tests = readFileSync(join(__dirname, "spectre_tests.xml"), "utf8") + const tests = readFileSync(join(__dirname, "spectre_tests.xml"), "utf8") const parser = new DOMParser() const xml = parser.parseFromString(tests, "text/xml") const cases = xml.getElementsByTagName("case") @@ -33,7 +29,7 @@ const parseCase = (c: Element): Record => { const caseData: Record = {} const id = c.getAttribute("id") caseData.id = id ?? "" - Array.from(c.childNodes).forEach((child) => { + Array.from(c.childNodes).forEach(child => { if (child.textContent === null) return caseData[child.nodeName] = child.textContent.trim() }) @@ -47,16 +43,8 @@ } for (const c of Array.from(cases).slice(1)) { const test = parseCase(c) it(`should generate the password for ${test.id}`, () => { - const s = new Spectre( - getDef(test, "userName"), - getDef(test, "userSecret"), - ) - const pw = s.site( - getDef(test, "siteName"), - getDef(test, "resultType") as Template, - Number.parseInt(getDef(test, "keyCounter")), - getDef(test, "keyPurpose") as Scope, - ) + const s = new Spectre(getDef(test, "userName"), getDef(test, "userSecret")) + const pw = s.site(getDef(test, "siteName"), getDef(test, "resultType") as Template, Number.parseInt(getDef(test, "keyCounter")), getDef(test, "keyPurpose") as Scope) assert.equal(pw, test.result) }) }