diff options
| -rw-r--r-- | include/stick10_commands_0.8.h | 2 | ||||
| -rw-r--r-- | unittest/constants.py | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/include/stick10_commands_0.8.h b/include/stick10_commands_0.8.h index f905794..7de2177 100644 --- a/include/stick10_commands_0.8.h +++ b/include/stick10_commands_0.8.h @@ -49,7 +49,7 @@ namespace nitrokey {              public:                  struct CommandPayload {                      uint8_t temporary_admin_password[25]; -                    uint8_t type; //0-secret, 1-name +                    uint8_t type; //S-secret, N-name                      uint8_t id; //multiple reports for values longer than 30 bytes                      uint8_t data[30]; //data, does not need null termination diff --git a/unittest/constants.py b/unittest/constants.py index 3c19a9b..0897b42 100644 --- a/unittest/constants.py +++ b/unittest/constants.py @@ -2,7 +2,7 @@ from enum import Enum  from misc import to_hex  RFC_SECRET_HR = '12345678901234567890' -RFC_SECRET = to_hex(RFC_SECRET_HR)  # '3031323334353637383930...' +RFC_SECRET = to_hex(RFC_SECRET_HR)  # '31323334353637383930...'  # print( repr((RFC_SECRET, RFC_SECRET_, len(RFC_SECRET))) ) | 
