aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2016-08-01 13:47:49 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2016-08-01 13:54:58 +0200
commite3aaef967be787c3ffb9a004e953515038a824a2 (patch)
tree015c9c05f8a9995dfbf94d97f6145cd9c12ae2ff
parent4e8c2da50e134951a833bd135fc87e89808ec59b (diff)
downloadlibnitrokey-e3aaef967be787c3ffb9a004e953515038a824a2.tar.gz
libnitrokey-e3aaef967be787c3ffb9a004e953515038a824a2.tar.bz2
Remove unneeded files / modules paths
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
-rw-r--r--.gitmodules3
-rw-r--r--python_bindings/api.cpp77
2 files changed, 0 insertions, 80 deletions
diff --git a/.gitmodules b/.gitmodules
index dd13427..6e2a0ec 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,6 +1,3 @@
-[submodule "Catch"]
- path = Catch
- url = https://github.com/philsquared/Catch.git
[submodule "unittest/Catch"]
path = unittest/Catch
url = https://github.com/philsquared/Catch.git
diff --git a/python_bindings/api.cpp b/python_bindings/api.cpp
deleted file mode 100644
index 57344c9..0000000
--- a/python_bindings/api.cpp
+++ /dev/null
@@ -1,77 +0,0 @@
-
-#include <iostream>
-//#include "toplevel.h"
-#include "../include/device.h"
-#include "../include/stick10_commands.h"
-#include "../include/log.h"
-#include "../include/device_proto.h"
-#include <cstdlib>
-#include <cstring>
-
-using namespace std;
-using namespace nitrokey::device;
-using namespace nitrokey::proto::stick10;
-using namespace nitrokey::proto;
-using namespace nitrokey::log;
-
-/*
-- manage (=create, change, delete, list, read) OTP entries
-- use/generate OTPs
-- Change PINs (so that the user doesn't need any other tool other than
-his Python application)
-* */
-
-
-bool writeHOTPSlot(Device &stick, int slotNumber, const char *slotName, const char *temporary_password,
- const char *secret);
-bool authenticate(Device &stick, const char *card_password, const char *temporary_password);
-
-int NK_login(char *user_type, char *pin);
-int NK_logout();
-
-//some_struct
-void NK_list_slots();
-int NK_erase_slot(int slot_num);
-int NK_erase_totp_slot(int slot_num);
-int NK_erase_hotp_slot(int slot_num);
-int NK_write_hotp_slot(char *secret, int hotp_counter);
-int NK_write_totp_slot(char *secret, int time_window);
-int NK_change_PIN();
-
-void initHotp(const char *card_password, int slot, const char *slot_name, const char *secret) {
- //Log::instance().set_loglevel(Loglevel::DEBUG);
- Stick10 stick;
- bool connected = stick.connect();
- auto response = GetStatus::CommandTransaction::run(stick);
- const char *temporary_password = "123456789012345678901234";
- bool success = authenticate(stick, card_password, temporary_password);
-// hexStringToByte(hwrite.slot_secret, hexSecret);
- success = writeHOTPSlot(stick, slot, slot_name, temporary_password, secret);
- stick.disconnect();
-}
-
-bool writeHOTPSlot(Device &stick, int slotNumber, const char *slotName, const char *temporary_password,
- const char *secret) {
- Transaction::CommandPayload hwrite;
- hwrite.slot_number = slotNumber;
- strcpy(reinterpret_cast<char *>(hwrite.slot_name), slotName);
- strcpy(reinterpret_cast<char *>(hwrite.slot_secret), secret);
-
- //authorize writehotp first
- Transaction::CommandPayload auth;
- strcpy((char *) (auth.temporary_password), temporary_password);
- auth.crc_to_authorize = auth.crc_to_authorize = WriteToHOTPSlot::CommandTransaction::getCRC(hwrite);
- Authorize::CommandTransaction::run(stick, auth);
-
- //run hotp command
- WriteToHOTPSlot::CommandTransaction::run(stick, hwrite);
- return true;
-}
-
-bool authenticate(Device &stick, const char *card_password, const char *temporary_password) {
- Transaction::CommandPayload authreq;
- strcpy((char *) (authreq.card_password), card_password);
- strcpy((char *) (authreq.temporary_password), temporary_password);
- FirstAuthenticate::CommandTransaction::run(stick, authreq);
- return true;
-}