blob: 0a875e483d65fe5e5d6025d58da2a9b34ac82505 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
#ifndef COMMAND_H
#define COMMAND_H
#include <string>
#include "command_id.h"
#include "cxx_semantics.h"
namespace nitrokey {
namespace proto {
template<CommandID cmd_id>
class Command : semantics::non_constructible {
public:
constexpr static CommandID command_id() { return cmd_id; }
template<typename T>
std::string dissect(const T &) {
return std::string("Payload dissection is unavailable");
}
};
#define print_to_ss(x) ( ss << " " << (#x) <<":\t" << (x) << std::endl );
namespace stick20{
enum class PasswordKind : uint8_t {
User = 'P',
Admin = 'A',
AdminPrefixed
};
template<CommandID cmd_id, PasswordKind Tpassword_kind = PasswordKind::User, int password_length = 20>
class PasswordCommand : public Command<cmd_id> {
public:
struct CommandPayload {
uint8_t kind;
uint8_t password[password_length];
std::string dissect() const {
std::stringstream ss;
print_to_ss( kind );
print_to_ss(password);
return ss.str();
}
void set_kind_admin() {
kind = (uint8_t) 'A';
}
void set_kind_admin_prefixed() {
kind = (uint8_t) 'P';
}
void set_kind_user() {
kind = (uint8_t) 'P';
}
void set_defaults(){
set_kind(Tpassword_kind);
}
void set_kind(PasswordKind password_kind){
switch (password_kind){
case PasswordKind::Admin:
set_kind_admin();
break;
case PasswordKind::User:
set_kind_user();
break;
case PasswordKind::AdminPrefixed:
set_kind_admin_prefixed();
break;
}
};
} __packed;
typedef Transaction<Command<cmd_id>::command_id(), struct CommandPayload, struct EmptyPayload>
CommandTransaction;
};
}
}
}
#undef print_to_ss
#endif
|