aboutsummaryrefslogtreecommitdiff
path: root/python_bindings_example.py
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2017-03-16 14:00:44 +0100
committerSzczepan Zalega <szczepan@nitrokey.com>2017-03-16 14:00:44 +0100
commitea3032027552d9f00a87e65b6a6399a07f1c5738 (patch)
treea669b41ae4a06a88c7b97aacea7098b37e1b1987 /python_bindings_example.py
parent22d05ce647281056d71fbd3c31df3bcd6396188d (diff)
downloadlibnitrokey-ea3032027552d9f00a87e65b6a6399a07f1c5738.tar.gz
libnitrokey-ea3032027552d9f00a87e65b6a6399a07f1c5738.tar.bz2
Documentation update
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'python_bindings_example.py')
-rwxr-xr-xpython_bindings_example.py36
1 files changed, 28 insertions, 8 deletions
diff --git a/python_bindings_example.py b/python_bindings_example.py
index 6bad8f4..37b70b8 100755
--- a/python_bindings_example.py
+++ b/python_bindings_example.py
@@ -4,7 +4,7 @@ from enum import Enum
"""
This example will print 10 HOTP codes from just written HOTP#2 slot.
-For more examples of use please refer to unittest/test_bindings.py file.
+For more examples of use please refer to unittest/test_*.py files.
"""
ffi = cffi.FFI()
@@ -27,20 +27,39 @@ def get_library():
a = iter(declarations)
for declaration in a:
- if declaration.startswith('extern') and not '"C"' in declaration:
- declaration = declaration.replace('extern', '').strip()
+ if declaration.startswith('NK_C_API'):
+ declaration = declaration.replace('NK_C_API', '').strip()
while not ';' in declaration:
declaration += (next(a)).strip()
- # print(declaration)
- ffi.cdef(declaration)
+ #print(declaration)
+ ffi.cdef(declaration, override=True)
+
+ C = None
+ import os, sys
+ path_build = os.path.join(".", "build")
+ paths = [ os.path.join(path_build,"libnitrokey-log.so"),
+ os.path.join(path_build,"libnitrokey.so")]
+ for p in paths:
+ print p
+ if os.path.exists(p):
+ C = ffi.dlopen(p)
+ break
+ else:
+ print("File does not exist: " + p)
+ print("Trying another")
+ if not C:
+ print("No library file found")
+ sys.exit(1)
- C = ffi.dlopen("build/libnitrokey.so") # path to built library
return C
def get_hotp_code(lib, i):
return lib.NK_get_hotp_code(i)
+def to_hex(ss):
+ return ''.join([ format(ord(s),'02x') for s in ss ])
+
print('Warning!')
print('This example will change your configuration on inserted stick and overwrite your HOTP#2 slot.')
print('Please write "continue" to continue or any other string to quit')
@@ -52,11 +71,12 @@ if not a == 'continue':
ADMIN = raw_input('Please enter your admin PIN (empty string uses 12345678)')
ADMIN = ADMIN or '12345678' # use default if empty string
+show_log = raw_input('Should log messages be shown (please write "yes" to enable)?') == 'yes'
libnitrokey = get_library()
-libnitrokey.NK_set_debug(False) # do not show debug messages
+libnitrokey.NK_set_debug(show_log) # do not show debug messages
ADMIN_TEMP = '123123123'
-RFC_SECRET = '12345678901234567890'
+RFC_SECRET = to_hex('12345678901234567890')
# libnitrokey.NK_login('S') # connect only to Nitrokey Storage device
# libnitrokey.NK_login('P') # connect only to Nitrokey Pro device