-
Notifications
You must be signed in to change notification settings - Fork 366
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
refactor: replace asmcrypto.js with native crypto module #6550
Draft
sidmorizon
wants to merge
17
commits into
x
Choose a base branch
from
fix/replace-to-native-crypto
base: x
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 14 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
963d0ff
refactor: replace asmcrypto.js with Node.js crypto module
devin-ai-integration[bot] 8ad91a5
fix: lint
sidmorizon df59c66
fix: lint
sidmorizon 95e3be2
fix: lint
sidmorizon af4d9fd
fix: lint
sidmorizon 51458d4
fix: lint
sidmorizon 4a6d72c
fix: unit tests
sidmorizon 5e3d2d9
fix: lint
sidmorizon 063d52f
fix: lint
sidmorizon 84c538f
fix: unit tests
sidmorizon ca96fe6
fix: unit test
sidmorizon 1611d65
fix: unit tests
sidmorizon fbe1c46
fix: lint
sidmorizon 0a33725
fix: lint
sidmorizon 67c5dac
fix: unit test
sidmorizon 82a7419
fix: lint
sidmorizon 7eb3d90
fix: lint
sidmorizon 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 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 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 @@ | ||
module.exports = {}; |
This file contains 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 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 |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
"@formatjs/intl-getcanonicallocales": "^1.9.2", | ||
"@formatjs/intl-locale": "^2.4.47", | ||
"@formatjs/intl-pluralrules": "^4.3.3", | ||
"@metamask/react-native-aes-crypto": "1.2.2", | ||
"@notifee/react-native": "9.0.0", | ||
"@onekeyfe/react-native-animated-charts": "1.0.0", | ||
"@onekeyfe/react-native-ble-plx": "3.0.0", | ||
|
@@ -54,6 +55,7 @@ | |
"expo-barcode-scanner": "12.9.3", | ||
"expo-blur": "12.9.1", | ||
"expo-clipboard": "5.0.1", | ||
"expo-crypto": "14.0.2", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove |
||
"expo-device": "5.9.3", | ||
"expo-haptics": "12.8.1", | ||
"expo-image-manipulator": "11.5.0", | ||
|
@@ -78,6 +80,7 @@ | |
"path-browserify": "^1.0.1", | ||
"react": "18.2.0", | ||
"react-native": "0.73.7", | ||
"react-native-aes-crypto": "3.2.1", | ||
"react-native-ble-manager": "^10.0.2", | ||
"react-native-camera-kit": "14.0.0-beta15", | ||
"react-native-canvas": "^0.1.39", | ||
|
This file contains 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 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 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 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 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 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 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 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 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 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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove