blob: ae13ddae142131960d05c83139fd6cbb27db2793 (
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
|
#include <iostream>
#include <string.h>
#include "device_proto.h"
#include "log.h"
#include "stick10_commands.h"
using namespace std;
using namespace nitrokey::device;
using namespace nitrokey::proto::stick10;
using namespace nitrokey::log;
int main() {
Stick10 stick;
cout << stick.connect() << endl;
Log::instance().set_loglevel(Loglevel::DEBUG_L2);
{
auto resp = GetStatus::CommandTransaction::run(stick);
}
{
FirstAuthenticate::CommandTransaction::CommandPayload authreq;
strcpy((char *)(authreq.card_password), "12345678");
FirstAuthenticate::CommandTransaction::run(stick, authreq);
}
{
for (int i=0; i<10; i++) {
ReadSlot::CommandTransaction::CommandPayload slot_req;
slot_req.slot_number = i;
auto slot = ReadSlot::CommandTransaction::run(stick, slot_req);
}
}
stick.disconnect();
}
|