-
Notifications
You must be signed in to change notification settings - Fork 166
replace crockford encoding dependencies #4374
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
mitchellhenke
merged 10 commits into
master
from
mitchellhenke/remove-vulnerable-crockford
Nov 3, 2020
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
0888424
replace crockford encoding dependencies
6c22d87
move encoding to package
9dbcf29
Update app/javascript/packages/personal-key-input/index.js
fa26b3f
Update app/javascript/packages/personal-key-input/index.js
003d94c
Update app/javascript/packages/personal-key-input/package.json
0e95daf
Update package.json
468ef42
yarn update
553f23e
remove broken class
5f22d84
remove unused variable
471e349
add couple more examples to spec
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| import base32Decode from 'base32-decode'; | ||
| import base32Encode from 'base32-encode'; | ||
|
|
||
| /** | ||
| * Coerce mistaken user input from 'problem' letters: | ||
| * https://en.wikipedia.org/wiki/Base32#Crockford.27s_Base32 | ||
| * | ||
| * @param {string} value User-provided text input | ||
| * | ||
| * @return {string} Encoded input | ||
| */ | ||
| export function encodeInput(value) { | ||
| value = value.replace(/-/g, ''); | ||
| value = base32Encode(base32Decode(value, 'Crockford'), 'Crockford'); | ||
|
|
||
| // Add back the dashes | ||
| value = (value.match(/.{4}/g) || [value]).join('-'); | ||
|
|
||
| // And uppercase | ||
| return value.toUpperCase(); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| import { encodeInput } from './index.js'; | ||
|
|
||
| describe('personal-key-input', () => { | ||
| describe('encodeInput', () => { | ||
| it('removes Crockford-encoded characters', () => { | ||
| expect(encodeInput('LlIi-1111-1111-1111')).to.equal('1111-1111-1111-1111'); | ||
|
|
||
| expect(encodeInput('LlII-0000-0000-0000')).to.equal('1111-0000-0000-0000'); | ||
|
|
||
| expect(encodeInput('1234-1234-1234-1234')).to.equal('1234-1234-1234-1234'); | ||
|
|
||
| expect(encodeInput('7P41-1JFN-W7JA-DVR2')).to.equal('7P41-1JFN-W7JA-DVR2'); | ||
|
|
||
| expect(encodeInput('')).to.be.a('string'); | ||
|
|
||
| expect(encodeInput('abc')).to.be.a('string'); | ||
| }); | ||
| }); | ||
| }); | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| { | ||
| "name": "@18f/identity-personal-key-input", | ||
| "private": true, | ||
| "version": "1.0.0", | ||
| "type": "module", | ||
| "dependencies": { | ||
| "base32-decode": "^1.0.0", | ||
| "base32-encode": "^1.1.1" | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.