mirror of
https://github.com/polhenarejos/pico-hsm.git
synced 2026-05-07 12:43:06 +00:00
RP 2040 does not have PIN support (i.e., pin pad support). Thus, we disable it to enable openssl pkcs11 engine interaction.
Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
parent
8d6acb8162
commit
553bd793b9
1 changed files with 4 additions and 1 deletions
5
ccid.h
5
ccid.h
|
|
@ -38,10 +38,13 @@ static const class_desc_ccid_t desc_ccid = {
|
|||
.wLcdLayout = (
|
||||
0xFF00| // Number of lines for the LCD display
|
||||
0x00FF), // Number of characters per line
|
||||
.bPINSupport = 0x1| // PIN Verification supported
|
||||
.bPINSupport = 0x0,
|
||||
/*
|
||||
0x1| // PIN Verification supported
|
||||
0x2| // PIN Modification supported
|
||||
0x10| // PIN PACE Capabilities supported
|
||||
0x20, // PIN PACE Verification supported
|
||||
*/
|
||||
.bMaxCCIDBusySlots = 0x01,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue