solo1
solo1 copied to clipboard
Storing <any type of> keys in Solo
I see that there is this function in device.c:
int8_t ctap_store_key(uint8_t index, uint8_t * key, uint16_t len);
- Can it be used to store any type of key/data -- assuming it adheres to space limitations?
- If this is possible, can the current
MAX_KEYSvalue be increased? It is 1 -- which is a bit limiting. - How can we delete a key stored with this function?
ctap_reset? - Lastly, any other ways to store keys? Do we need to convert various types of keys into
ResidentKeys?