-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
nrf_security: drivers: cracen: integrate new version #19139
nrf_security: drivers: cracen: integrate new version #19139
Conversation
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:sdk-nrf: PR head: ff1c225ad7db26094b33fdd1d602e46b3316d955 more detailssdk-nrf:
Github labels
List of changed files detected by CI (57)
Outputs:ToolchainVersion: 11349092be Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
faa0433
to
b2afca8
Compare
b2afca8
to
2208d1c
Compare
2954ef1
to
e435b87
Compare
e435b87
to
5732f5e
Compare
@@ -1,7 +1,7 @@ | |||
/** BA431 TRNG registers defines. | |||
* | |||
* @file | |||
* @copyright Copyright (c) 2023 Nordic Semiconductor ASA | |||
* @copyright Copyright (cu) 2023 Nordic Semiconductor ASA |
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.
s/cu/c
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.
😮 who did that
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.
fixed (+ rebased)
5732f5e
to
23ef039
Compare
23ef039
to
7b40b17
Compare
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.
I did a first pass on this, I think tht it is a good idea to remove unused code/references sicne it is not clear yet if these are needed.
* @return ::SX_ERR_EXPIRED | ||
* @return ::SX_ERR_PK_RETRY | ||
*/ | ||
static inline int sx_ecp_check_order(const struct sx_pk_ecurve *curve, |
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.
I don't see it referenenced anywhere, is this unused?
subsys/nrf_security/src/drivers/cracen/silexpk/target/hw/ba414/ec_curves.c
Outdated
Show resolved
Hide resolved
subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/cmddefs/modexp.h
Outdated
Show resolved
Hide resolved
subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/ec_curves.h
Outdated
Show resolved
Hide resolved
7b40b17
to
f26e34d
Compare
Yeah. Some you pointed out were just used directly by some samples. One was used by |
My guess is that you are referring to internal Silex samples. Please correct me if I am wrong. If these are the samples that you refer to I would propose to ignore them since these are not intergated in the CI, it's better to avoid including code solely used by these samples. I agree that more cleanup is needed for this code for sure. But this is not a valid reason to add more unused code. Lets have less cleanup to do later :) |
f26e34d
to
ade6f8c
Compare
just rebased |
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.
Approved since a cleanup commit is planned
#define SX_BLKCIPHER_PRIV_SZ (16) | ||
#define SX_AEAD_PRIV_SZ (70) |
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.
Is there a reason parentheses were added here instead of removed like everywhere else?
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.
Not really, no.
source: /silexpk-r20220524/include/silexpk/ The following new header files are left out and could subsequently be added if there is a use for them: - 3gpp.h - aria.h - channel.h - transfer.h Signed-off-by: Tomi Fontanilles <tomi.fontanilles@nordicsemi.no>
source: /sxsymcrypt-r20220504/include/sxsymcrypt/ Signed-off-by: Tomi Fontanilles <tomi.fontanilles@nordicsemi.no>
source: /silexpk-r20220524/ Signed-off-by: Tomi Fontanilles <tomi.fontanilles@nordicsemi.no>
source: /sxsymcrypt-r20220504/ The following new source files are left out and could subsequently be added if there is a use for them: - 3gpp.c - aria.c - channel.c - transfer.c Signed-off-by: Tomi Fontanilles <tomi.fontanilles@nordicsemi.no>
ade6f8c
to
ed531a3
Compare
subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/ed25519.h
Outdated
Show resolved
Hide resolved
subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/ed448.h
Outdated
Show resolved
Hide resolved
subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/ed25519.h
Outdated
Show resolved
Hide resolved
subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/ed448.h
Outdated
Show resolved
Hide resolved
subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/ed448.h
Outdated
Show resolved
Hide resolved
subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/ed448.h
Outdated
Show resolved
Hide resolved
subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/ed448.h
Outdated
Show resolved
Hide resolved
subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/ed448.h
Outdated
Show resolved
Hide resolved
c->inminsz = 16; | ||
c->granularity = 16; | ||
return sx_blkcipher_create_aes_ba411(c, key, NULL, BLKCIPHER_MODEID_ECB, ba411cfg.decr); | ||
return sx_blkcipher_create_aes_ba411(c, key, NULL, &ba411ecbcfg, ba411ecbcfg.decr); |
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.
Any particular reason why this global symbol (ba411ecbcfg.decr) is referenced here. Wouldn't CM_CFG_DECRYPT be simpler?
The change has already happened in sx_blkcipher_create_aesecb_enc
...
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.
Yeah I also noticed that, and I don't quite know. For some reason CM_CFG_ENCRYPT
is used directly but for CM_CFG_DECRYPT
it's obtained from the sx_blkcipher_cmdma_cfg
struct's decr
member.
My line of conduct with this PR was to only integrate the differences and not make changes of mine, otherwise I might've ended up rewriting the whole thing. 😃
Regarding the decr
member in particular, I see it's set to a different value in chachapoly.c
.
And aead.c
uses it, so we might not be able to remove it from the struct (at least in the most straightforward way).
So yeah, we could still replace those ba411*cfg.decr
by the literal macros here, but I'll leave that for follow-up cleanup/optimization work. (And will take note of that.)
subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/ed25519.h
Outdated
Show resolved
Hide resolved
subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/ed25519.h
Outdated
Show resolved
Hide resolved
subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/ed25519.h
Outdated
Show resolved
Hide resolved
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.
LGTM
(Minor NITS about naming convention for Ed25519 and Ed448)
Capitalize them properly. Signed-off-by: Tomi Fontanilles <tomi.fontanilles@nordicsemi.no>
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.
LGTM
No description provided.