mirror of
https://github.com/status-im/status-lib.git
synced 2025-01-12 21:44:57 +00:00
45887b1724
* add nim-keycard-go to makefile * fix keycard-go build * add keycard.nim * remove test make task * remove debug line from makefile * fix import keycard_go * add keycard-go to .PHONY * add keycard start/stop/select methods * use https url for submodule * add KeycardApplication info and return it from select * update nim-keycard-go version * fix select return type * actually return the result * update nim-keycard-go * add keycard methods to backend * add base/mock keycard backends * imports * export keycard methods in backend * update start/stop keycard implementation * add KeycardStarted signal * fix keycard started signal * rename to KeycardConnected signal * fix keycard signal renamed * add keycardgo in makefile tasks * add back build/.gitignore * fix .gitignore * fix .gitignore * Makefile: export keycard vars * add keycard lib to nimble file * use spaces instead of tabs in non-recipe sections of Makefile * use install_name_tool on libkeycard on macOS * in GHA ubuntu environment install libpcsclite-dev with apt at start of workflow * add Keycard exceptions * remove useless test * remove useless return * move keycard types to /types * reraise exception from status/keycard.nim * remove unused import * add keycard commands: opensecure channel, pair, verify pin, export key * fix last keycard commands * add exportKey params * update nim-keycard-go Co-authored-by: Michele Balistreri <michele@bitgamma.com> Co-authored-by: Michael Bradley, Jr <michaelsbradleyjr@gmail.com>
24 lines
947 B
Nim
24 lines
947 B
Nim
from ./types import Backend, StatusGoBackend, MockBackend
|
|
export Backend, StatusGoBackend, MockBackend
|
|
|
|
from base/bookmarks as bookmarks_methods import storeBookmark, updateBookmark, getBookmarks, deleteBookmark
|
|
export storeBookmark, updateBookmark, getBookmarks, deleteBookmark
|
|
|
|
from base/keycard as keycard_methods import keycardStart, keycardStop, keycardSelect, keycardPair,
|
|
keycardOpenSecureChannel, keycardVerifyPin, keycardExportKey
|
|
export keycardStart, keycardStop, keycardSelect, keycardPair,
|
|
keycardOpenSecureChannel, keycardVerifyPin, keycardExportKey
|
|
|
|
import statusgo/bookmarks as statusgo_bookmarks
|
|
import mock/bookmarks as mock_bookmarks
|
|
import statusgo/keycard as statusgo_keycard
|
|
import mock/keycard as mock_keycard
|
|
|
|
proc newBackend*(name: string): Backend =
|
|
if name == "statusgo":
|
|
result = StatusGoBackend()
|
|
elif name == "mock":
|
|
result = MockBackend()
|
|
else:
|
|
raise newException(ValueError, "unknown backend")
|