-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Adding AES-256 and AES-256-CTR encryption methods #6018
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
Merged
Changes from all commits
Commits
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
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 |
|---|---|---|
| @@ -1,13 +1,32 @@ | ||
| import { DecrypterAesMode } from './decrypter-aes-mode'; | ||
|
|
||
| export default class AESCrypto { | ||
| private subtle: SubtleCrypto; | ||
| private aesIV: Uint8Array; | ||
| private aesMode: DecrypterAesMode; | ||
|
|
||
| constructor(subtle: SubtleCrypto, iv: Uint8Array) { | ||
| constructor(subtle: SubtleCrypto, iv: Uint8Array, aesMode: DecrypterAesMode) { | ||
| this.subtle = subtle; | ||
| this.aesIV = iv; | ||
| this.aesMode = aesMode; | ||
| } | ||
|
|
||
| decrypt(data: ArrayBuffer, key: CryptoKey) { | ||
| return this.subtle.decrypt({ name: 'AES-CBC', iv: this.aesIV }, key, data); | ||
| switch (this.aesMode) { | ||
| case DecrypterAesMode.cbc: | ||
| return this.subtle.decrypt( | ||
| { name: 'AES-CBC', iv: this.aesIV }, | ||
| key, | ||
| data, | ||
| ); | ||
| case DecrypterAesMode.ctr: | ||
| return this.subtle.decrypt( | ||
| { name: 'AES-CTR', counter: this.aesIV, length: 64 }, //64 : NIST SP800-38A standard suggests that the counter should occupy half of the counter block | ||
| key, | ||
| data, | ||
| ); | ||
| default: | ||
| throw new Error(`[AESCrypto] invalid aes mode ${this.aesMode}`); | ||
| } | ||
| } | ||
| } |
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,4 @@ | ||
| export const enum DecrypterAesMode { | ||
| cbc = 0, | ||
| ctr = 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,16 +1,35 @@ | ||
| import { DecrypterAesMode } from './decrypter-aes-mode'; | ||
|
|
||
| export default class FastAESKey { | ||
| private subtle: any; | ||
| private key: ArrayBuffer; | ||
| private aesMode: DecrypterAesMode; | ||
|
|
||
| constructor(subtle, key) { | ||
| constructor(subtle, key, aesMode: DecrypterAesMode) { | ||
| this.subtle = subtle; | ||
| this.key = key; | ||
| this.aesMode = aesMode; | ||
| } | ||
|
|
||
| expandKey() { | ||
| return this.subtle.importKey('raw', this.key, { name: 'AES-CBC' }, false, [ | ||
| 'encrypt', | ||
| 'decrypt', | ||
| ]); | ||
| const subtleAlgoName = getSubtleAlgoName(this.aesMode); | ||
| return this.subtle.importKey( | ||
| 'raw', | ||
| this.key, | ||
| { name: subtleAlgoName }, | ||
| false, | ||
| ['encrypt', 'decrypt'], | ||
| ); | ||
| } | ||
| } | ||
|
|
||
| function getSubtleAlgoName(aesMode: DecrypterAesMode) { | ||
| switch (aesMode) { | ||
| case DecrypterAesMode.cbc: | ||
| return 'AES-CBC'; | ||
| case DecrypterAesMode.ctr: | ||
| return 'AES-CTR'; | ||
| default: | ||
| throw new Error(`[FastAESKey] invalid aes mode ${aesMode}`); | ||
| } | ||
| } |
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
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 { DecrypterAesMode } from '../crypt/decrypter-aes-mode'; | ||
|
|
||
| export function isFullSegmentEncryption(method: string): boolean { | ||
| return ( | ||
| method === 'AES-128' || method === 'AES-256' || method === 'AES-256-CTR' | ||
| ); | ||
| } | ||
|
|
||
| export function getAesModeFromFullSegmentMethod( | ||
| method: string, | ||
| ): DecrypterAesMode { | ||
| switch (method) { | ||
| case 'AES-128': | ||
| case 'AES-256': | ||
| return DecrypterAesMode.cbc; | ||
| case 'AES-256-CTR': | ||
| return DecrypterAesMode.ctr; | ||
| default: | ||
| throw new Error(`invalid full segment method ${method}`); | ||
| } | ||
| } |
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
Oops, something went wrong.
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.