diff options
| author | Szczepan Zalega <szczepan@nitrokey.com> | 2016-10-28 16:29:55 +0200 | 
|---|---|---|
| committer | Szczepan Zalega <szczepan@nitrokey.com> | 2016-11-26 18:56:26 +0100 | 
| commit | ce30b49b4d50f2eff39a40ddd0c02ad96b78654c (patch) | |
| tree | 087d51ac8ac9dd43194b8546bab7eaab1e354d6b | |
| parent | 6343eea03980627cb763de777af6b316130bdf43 (diff) | |
| download | libnitrokey-ce30b49b4d50f2eff39a40ddd0c02ad96b78654c.tar.gz libnitrokey-ce30b49b4d50f2eff39a40ddd0c02ad96b78654c.tar.bz2  | |
Make packet variables' names more clear
General fixes
Remove default values from hidden volume setup command
rename password -> pin
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
| -rw-r--r-- | NitrokeyManager.cc | 6 | ||||
| -rw-r--r-- | include/stick20_commands.h | 31 | ||||
| -rw-r--r-- | unittest/test2.cc | 6 | 
3 files changed, 19 insertions, 24 deletions
diff --git a/NitrokeyManager.cc b/NitrokeyManager.cc index 4c2c834..8bc0e38 100644 --- a/NitrokeyManager.cc +++ b/NitrokeyManager.cc @@ -420,7 +420,7 @@ namespace nitrokey{              }              case DeviceModel::STORAGE : {                  auto p = get_payload<stick20::CreateNewKeys>(); -                strcpyT(p.admin_password, admin_password); +                strcpyT(p.admin_pin, admin_password);                  p.setKindPrefixed();                  stick20::CreateNewKeys::CommandTransaction::run(*device, p);                  break; @@ -448,10 +448,10 @@ namespace nitrokey{            p2.set_kind(PasswordKind::Admin);            strcpyT(p2.old_pin, admin_password);            ChangeAdminUserPin20Current::CommandTransaction::run(*device, p2); -          auto p3 = get_payload<stick20::UnlockUserPassword>(); +          auto p3 = get_payload<stick20::UnlockUserPin>();            p3.set_kind(PasswordKind::Admin);            strcpyT(p3.user_new_password, new_user_password); -          stick20::UnlockUserPassword::CommandTransaction::run(*device, p3); +          stick20::UnlockUserPin::CommandTransaction::run(*device, p3);            break;          }        } diff --git a/include/stick20_commands.h b/include/stick20_commands.h index 42f46ad..31d7b13 100644 --- a/include/stick20_commands.h +++ b/include/stick20_commands.h @@ -71,7 +71,7 @@ namespace nitrokey {              }; -            class UnlockUserPassword : Command<CommandID::UNLOCK_USER_PASSWORD> { +            class UnlockUserPin : Command<CommandID::UNLOCK_USER_PASSWORD> {              public:                  struct CommandPayload {                      uint8_t kind; @@ -124,11 +124,11 @@ namespace nitrokey {              public:                  struct CommandPayload {                      uint8_t kind; -                    uint8_t admin_password[30]; //CS20_MAX_PASSWORD_LEN +                    uint8_t admin_pin[30]; //CS20_MAX_PASSWORD_LEN                      std::string dissect() const {                        std::stringstream ss;                        print_to_ss( kind ); -                      ss << " admin_password:\t" << admin_password << std::endl; +                      ss << " admin_pin:\t" << admin_pin << std::endl;                        return ss.str();                      } @@ -152,13 +152,13 @@ namespace nitrokey {                  struct CommandPayload {                      uint8_t volume_flag;                      uint8_t kind; -                    uint8_t password[20]; +                    uint8_t admin_pin[20];                      std::string dissect() const {                        std::stringstream ss;                        print_to_ss( (int) volume_flag );                        print_to_ss( kind ); -                      print_to_ss(password); +                      print_to_ss(admin_pin);                        return ss.str();                      }                      void set_kind_user() { @@ -297,27 +297,20 @@ namespace nitrokey {              class SetupHiddenVolume : Command<CommandID::SEND_HIDDEN_VOLUME_SETUP> {              public: -                constexpr static int MAX_HIDDEN_VOLUME_PASSOWORD_SIZE = 20; +                constexpr static int MAX_HIDDEN_VOLUME_PASSWORD_SIZE = 20;                  struct CommandPayload {                      uint8_t SlotNr_u8;                      uint8_t StartBlockPercent_u8;                      uint8_t EndBlockPercent_u8; -                    uint8_t HiddenVolumePassword_au8[MAX_HIDDEN_VOLUME_PASSOWORD_SIZE + 1]; //last char is a null terminator TODO check if it's needed +                    uint8_t HiddenVolumePassword_au8[MAX_HIDDEN_VOLUME_PASSWORD_SIZE];                      std::string dissect() const {                        std::stringstream ss;                        print_to_ss((int) SlotNr_u8);                        print_to_ss((int) StartBlockPercent_u8);                        print_to_ss((int) EndBlockPercent_u8); -                      ss << " HiddenVolumePassword_au8:\t" -                         << HiddenVolumePassword_au8 << std::endl; +                      print_to_ss(HiddenVolumePassword_au8);                        return ss.str();                      } - -                    void set_defaults(){ -                      SlotNr_u8 = 0; -                      StartBlockPercent_u8 = 70; -                      EndBlockPercent_u8 = 90; -                    }                  } __packed;                  typedef Transaction<command_id(), struct CommandPayload, struct EmptyPayload> @@ -329,9 +322,9 @@ namespace nitrokey {              class ProductionTest : Command<CommandID::PRODUCTION_TEST> {              public: -                static const int OUTPUT_CMD_RESULT_STICK20_STATUS_START = 25 + 1; -                static const int payload_absolute_begin = 8; -                static const int padding_size = OUTPUT_CMD_RESULT_STICK20_STATUS_START - payload_absolute_begin; +                static constexpr int OUTPUT_CMD_RESULT_STICK20_STATUS_START = 25 + 1; +                static constexpr int payload_absolute_begin = 8; +                static constexpr int padding_size = OUTPUT_CMD_RESULT_STICK20_STATUS_START - payload_absolute_begin;                  struct ResponsePayload {                      uint8_t _padding[padding_size]; @@ -380,7 +373,7 @@ namespace nitrokey {                        print_to_ss( SD_WriteSpeed_u16);                        print_to_ss((int) SD_Card_Manufacturer_u8); -                      ss << "_padding:\t" +                      ss << "_padding:" << std::endl                           << ::nitrokey::misc::hexdump((const char *) (_padding),                                                        sizeof _padding);                        return ss.str(); diff --git a/unittest/test2.cc b/unittest/test2.cc index f5d2b28..9aaef3f 100644 --- a/unittest/test2.cc +++ b/unittest/test2.cc @@ -40,7 +40,7 @@ TEST_CASE("long operation test", "[test_long]") {  //    execute_password_command<FillSDCardWithRandomChars>(stick, "12345678", 'P');      auto p = get_payload<FillSDCardWithRandomChars>();      p.set_defaults(); -    strcpyT(p.password, "12345678"); +    strcpyT(p.admin_pin, "12345678");      FillSDCardWithRandomChars::CommandTransaction::run(stick, p);      this_thread::sleep_for(1000ms); @@ -143,7 +143,9 @@ TEST_CASE("setup hidden volume test", "[hidden]") {    execute_password_command<EnableEncryptedPartition>(stick, "123456");    auto p = get_payload<stick20::SetupHiddenVolume>(); -  p.set_defaults(); +  p.SlotNr_u8 = 0; +  p.StartBlockPercent_u8 = 70; +  p.EndBlockPercent_u8 = 90;    auto hidden_volume_password = "123123123";    strcpyT(p.HiddenVolumePassword_au8, hidden_volume_password);    stick20::SetupHiddenVolume::CommandTransaction::run(stick, p);  | 
