yubioath-flutter/helper/authenticator-helper.py

22 lines
510 B
Python
Raw Normal View History

2022-02-10 15:29:20 +03:00
#!/usr/bin/env python3
from helper import run_rpc_pipes, run_rpc_socket
2022-03-30 17:45:47 +03:00
import socket
2022-02-10 15:29:20 +03:00
import sys
if __name__ == "__main__":
if "--tcp" in sys.argv:
2022-03-30 17:45:47 +03:00
index = sys.argv.index("--tcp")
port = int(sys.argv[index + 1])
nonce = sys.argv[index + 2].encode()
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect(("localhost", port))
sock.sendall(nonce + b"\n")
run_rpc_socket(sock)
else:
2022-03-30 17:45:47 +03:00
run_rpc_pipes(sys.stdout, sys.stdin)