Skip to content

Commit

Permalink
Change cmocka git repo from cryptomilk.org to GitLab
Browse files Browse the repository at this point in the history
  • Loading branch information
aido committed May 29, 2024
1 parent d5e40ae commit 7f1d3e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.7.3] - 2024-05-28
## [1.7.3] - 2024-05-29

### Fixed
- Changed name of 'Generate BIP39' menus to 'Recover BIP39'
- Changed Second Montgomery constant used for `cx_bn_gf2_n_mul()` to a more suitable value
- Improve efficiency of `cx_bn_gf2_n_mul()` for Nano S
- Change cmocka git repo from cryptomilk.org to GitLab

## [1.7.2] - 2024-05-06

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ find_package(cmocka QUIET)
include(FetchContent)
FetchContent_Declare(
cmocka
GIT_REPOSITORY https://git.cryptomilk.org/projects/cmocka.git
GIT_REPOSITORY https://gitlab.com/cmocka/cmocka.git
GIT_TAG cmocka-1.1.7
GIT_SHALLOW 1
)
Expand Down
2 changes: 2 additions & 0 deletions tests/unit/lib/bolos/cxlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@
// Defines
//-----------------------------------------------------------------------------
// Those defines can be found in the SDK, in cx_errors.h file:
#ifndef CX_CHECK
#define CX_CHECK(call) \
do { \
error = call; \
if (error) { \
goto end; \
} \
} while (0)
#endif

#define CX_CHECK_IGNORE_CARRY(call) \
do { \
Expand Down

0 comments on commit 7f1d3e6

Please sign in to comment.