2015-02-11 09:18:31 +00:00
|
|
|
from __future__ import print_function
|
2015-02-11 00:50:32 +00:00
|
|
|
import os, sys, json
|
|
|
|
from binascii import hexlify
|
|
|
|
from nacl.secret import SecretBox
|
2015-02-15 17:53:59 +00:00
|
|
|
from wormhole.blocking.transcribe import Initiator
|
|
|
|
from wormhole.blocking.transit import TransitSender
|
2015-02-11 00:50:32 +00:00
|
|
|
|
|
|
|
APPID = "lothar.com/wormhole/file-xfer"
|
|
|
|
|
|
|
|
# we're sending
|
|
|
|
filename = sys.argv[1]
|
|
|
|
assert os.path.isfile(filename)
|
2015-02-15 22:42:59 +00:00
|
|
|
xfer_key = os.urandom(SecretBox.KEY_SIZE)
|
2015-02-15 17:53:59 +00:00
|
|
|
transit_sender = TransitSender()
|
2015-02-15 22:42:59 +00:00
|
|
|
transit_key = transit_sender.get_transit_key()
|
2015-02-15 17:53:59 +00:00
|
|
|
direct_hints = transit_sender.get_direct_hints()
|
|
|
|
relay_hints = transit_sender.get_relay_hints()
|
|
|
|
|
2015-02-15 22:42:59 +00:00
|
|
|
data = json.dumps({
|
|
|
|
"file": {
|
|
|
|
"key": hexlify(xfer_key),
|
|
|
|
"filename": os.path.basename(filename),
|
|
|
|
"filesize": os.stat(filename).st_size,
|
|
|
|
},
|
|
|
|
"transit": {
|
|
|
|
"key": hexlify(transit_key),
|
|
|
|
"direct_connection_hints": direct_hints,
|
|
|
|
"relay_connection_hints": relay_hints,
|
|
|
|
},
|
|
|
|
}).encode("utf-8")
|
2015-02-15 17:53:59 +00:00
|
|
|
|
|
|
|
i = Initiator(APPID, data)
|
2015-02-11 02:34:13 +00:00
|
|
|
code = i.get_code()
|
2015-02-15 17:53:59 +00:00
|
|
|
print("On the other computer, please run: receive_file")
|
2015-02-11 00:50:32 +00:00
|
|
|
print("Wormhole code is '%s'" % code)
|
2015-02-15 17:53:59 +00:00
|
|
|
print("")
|
2015-02-11 02:34:13 +00:00
|
|
|
them_bytes = i.get_data()
|
2015-02-11 00:50:32 +00:00
|
|
|
them_d = json.loads(them_bytes.decode("utf-8"))
|
|
|
|
print("them: %r" % (them_d,))
|
|
|
|
|
2015-02-11 01:04:28 +00:00
|
|
|
box = SecretBox(xfer_key)
|
|
|
|
with open(filename, "rb") as f:
|
|
|
|
plaintext = f.read()
|
2015-02-19 01:23:09 +00:00
|
|
|
nonce = os.urandom(SecretBox.NONCE_SIZE)
|
2015-02-11 01:04:28 +00:00
|
|
|
encrypted = box.encrypt(plaintext, nonce)
|
|
|
|
|
2015-02-19 01:23:09 +00:00
|
|
|
tdata = them_d["transit"]
|
|
|
|
transit_sender.add_receiver_hints(tdata["direct_connection_hints"])
|
|
|
|
skt = transit_sender.establish_connection()
|
2015-02-19 23:30:16 +00:00
|
|
|
skt.send(encrypted)
|
2015-02-19 01:23:09 +00:00
|
|
|
skt.close()
|
2015-02-15 17:53:59 +00:00
|
|
|
|
2015-02-11 01:04:28 +00:00
|
|
|
print("file sent")
|