Files
U2FDevice/U2F_Init_CMD.hpp
Michael Kuc 86af080ba6 Added registration.
Currently doesn't return any valid result, hence host believes device
failed to register, however, insecure storage of keys does occur.
2018-07-31 00:09:25 +00:00

12 lines
147 B
C++

#pragma once
#include <cstdint>
#include "U2F_CMD.hpp"
struct U2F_Init_CMD : U2F_CMD
{
uint64_t nonce;
public:
static U2F_Init_CMD get();
};