add capability to switch out the public default key for OEMs (#216)

This commit is contained in:
Thomas Göttgens 2022-10-19 11:28:30 +02:00 committed by GitHub
parent 7c83c32dff
commit d0559bfa3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View file

@ -10,5 +10,5 @@
*ChannelFile.channels max_count:8
*OEMStore.oem_text max_size:40
*OEMStore.oem_icon_bits max_size:2048
*OEMStore.oem_icon_bits max_size:2048
*OEMStore.oem_aes_key max_size:32

View file

@ -134,4 +134,9 @@ message OEMStore {
* Use this font for the OEM text.
*/
string oem_text = 5;
/*
* The default device encryption key, 16 or 32 byte
*/
bytes oem_aes_key = 6;
}