mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-02 21:02:34 +00:00
fixup! enable writing optiga secret
This commit is contained in:
parent
892de7cf82
commit
e9205c4bf8
@ -680,11 +680,6 @@ static bool pair_optiga(void) {
|
|||||||
|
|
||||||
// Store pairing secret.
|
// Store pairing secret.
|
||||||
ret = optiga_set_data_object(OID_KEY_PAIRING, false, secret, sizeof(secret));
|
ret = optiga_set_data_object(OID_KEY_PAIRING, false, secret, sizeof(secret));
|
||||||
/*
|
|
||||||
* TODO: Uncomment. Right now this code will render the device unusable with
|
|
||||||
* unofficial firmware. We need to be able to call AttestationDelete before
|
|
||||||
* this code is enabled.
|
|
||||||
*
|
|
||||||
if (OPTIGA_SUCCESS == ret) {
|
if (OPTIGA_SUCCESS == ret) {
|
||||||
secret_erase();
|
secret_erase();
|
||||||
secret_write_header();
|
secret_write_header();
|
||||||
@ -698,7 +693,6 @@ static bool pair_optiga(void) {
|
|||||||
vcp_println("ERROR Failed to read pairing secret.");
|
vcp_println("ERROR Failed to read pairing secret.");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
ret = optiga_sec_chan_handshake(secret, sizeof(secret));
|
ret = optiga_sec_chan_handshake(secret, sizeof(secret));
|
||||||
memzero(secret, sizeof(secret));
|
memzero(secret, sizeof(secret));
|
||||||
|
Loading…
Reference in New Issue
Block a user