-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
1,038 additions
and
280 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
BasedOnStyle: Google | ||
IndentWidth: 4 | ||
ColumnLimit: 120 | ||
DerivePointerAlignment: false | ||
PointerAlignment: Right | ||
AllowShortFunctionsOnASingleLine: None | ||
AlignConsecutiveMacros: | ||
Enabled: true | ||
AcrossEmptyLines: true | ||
AcrossComments: false | ||
|
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,21 @@ | ||
Checks: "-*, | ||
clang-analyzer-*, | ||
clang-diagnostic-*, | ||
cppcoreguidelines-init-variables, | ||
google-readability-avoid-underscore-in-googletest-name, | ||
google-runtime-int, | ||
misc-*, | ||
performance-*, | ||
portability-*, | ||
readability-*, | ||
-misc-no-recursion, | ||
-readability-function-cognitive-complexity | ||
-readability-magic-numbers" | ||
WarningsAsErrors: "*" | ||
CheckOptions: | ||
- key: readability-identifier-length.MinimumVariableNameLength | ||
value: 2 | ||
- key: readability-identifier-length.MinimumParameterNameLength | ||
value: 2 | ||
- key: readability-identifier-length.MinimumLoopCounterNameLength | ||
value: 1 |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,18 +1,6 @@ | ||
[submodule "deps/BLAKE2"] | ||
path = deps/BLAKE2 | ||
url = https://github.com/BLAKE2/BLAKE2 | ||
[submodule "deps/nanos-secure-sdk"] | ||
path = deps/nanos-secure-sdk | ||
url = https://github.com/LedgerHQ/nanos-secure-sdk.git | ||
[submodule "deps/nanox-secure-sdk"] | ||
path = deps/nanox-secure-sdk | ||
url = https://github.com/LedgerHQ/ledger-secure-sdk.git | ||
[submodule "deps/nanosplus-secure-sdk"] | ||
path = deps/nanosplus-secure-sdk | ||
url = https://github.com/LedgerHQ/ledger-secure-sdk.git | ||
[submodule "deps/ledger-zxlib"] | ||
path = deps/ledger-zxlib | ||
url = https://github.com/Zondax/ledger-zxlib.git | ||
[submodule "deps/stax-secure-sdk"] | ||
path = deps/stax-secure-sdk | ||
url = https://github.com/LedgerHQ/ledger-secure-sdk.git | ||
url = https://github.com/zondax/ledger-zxlib |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,4 +48,4 @@ bin/app.sha256 | |
bin/app.apdu | ||
|
||
\output/app.* | ||
pkg/installer_*.sh | ||
pkg/*.sh |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# This is the major version of this release | ||
APPVERSION_M=3 | ||
APPVERSION_M=4 | ||
# This is the minor version of this release | ||
APPVERSION_N=3 | ||
APPVERSION_N=0 | ||
# This is the patch version of this release | ||
APPVERSION_P=6 | ||
APPVERSION_P=0 |
File renamed without changes.
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
authors = ["Zondax AG <[email protected]>"] | ||
name = "rslib" | ||
version = "0.1.0" | ||
edition = "2018" | ||
edition = "2021" | ||
readme = "README.md" | ||
|
||
[lib] | ||
|
@@ -18,7 +18,7 @@ binary-ff1 = { version = "0.1.0", default-features = false } | |
aes = { version = "0.3", default-features = false } | ||
byteorder = { version = "1", default-features = false } | ||
hex = { version = "0.4.2", default-features = false } | ||
nom = { version = "5.1.1", default-features = false } | ||
nom = { version = "5.1", default-features = false } | ||
group = { version = "0.12", default-features = false } | ||
|
||
[dependencies.chacha20poly1305] | ||
|
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 was deleted.
Oops, something went wrong.
Submodule ledger-zxlib
updated
13 files
+5 −0 | .clang-format | |
+21 −0 | .clang-tidy | |
+27 −8 | CMakeLists.txt | |
+1 −1 | LICENSE | |
+1 −1 | README.md | |
+1 −0 | cmake/Hunter/config.cmake | |
+543 −0 | cmake/HunterGate.cmake | |
+0 −31 | cmake/gtest/CMakeLists.txt | |
+0 −16 | cmake/gtest/CMakeLists.txt.gtest.in | |
+9 −3 | dockerized_build.mk | |
+1 −1 | include/zxversion.h | |
+22 −16 | makefiles/Makefile.devices | |
+0 −2 | scripts/install_deps.sh |
Submodule nanos-secure-sdk
deleted from
68c5bf
Submodule nanosplus-secure-sdk
deleted from
212327
Submodule nanox-secure-sdk
deleted from
212327
Submodule stax-secure-sdk
deleted from
212327
Oops, something went wrong.