Skip to content
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

downgrade littlefs and fix compilation errors #57

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion canokey-crypto
Submodule canokey-crypto updated 2 files
+2 −2 include/rsa.h
+4 −2 src/rsa.c
1 change: 1 addition & 0 deletions include/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
#define HI(x) ((uint8_t)(((x)&0xFF00) >> 8))
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
#define SWAP(x, y, T) do { T SWAP = x; x = y; y = SWAP; } while (0)

#define UNUSED(x) ((void)(x))
#define __weak __attribute__((weak))
Expand Down
2 changes: 1 addition & 1 deletion littlefs
1 change: 0 additions & 1 deletion src/key.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#include "memzero.h"
#include <common.h>
#include <key.h>
#include <memory.h>

#define KEY_META_ATTR 0xFF
#define CEIL_DIV_SQRT2 0xB504F334
Expand Down
Loading