forked from turnkeylinux/tklbam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
passphrase.py
46 lines (37 loc) · 1.2 KB
/
passphrase.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# Copyright (c) 2010-2012 Liraz Siri <[email protected]>
#
# This file is part of TKLBAM (TurnKey GNU/Linux BAckup and Migration).
#
# TKLBAM is open source software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 3 of
# the License, or (at your option) any later version.
#
import os
import sys
import base64
import getpass
def random_passphrase():
random = base64.b32encode(os.urandom(10))
parts = []
for i in range(4):
parts.append(random[i * 4:(i+1) * 4])
return "-".join(parts)
class Error(Exception):
pass
def get_passphrase(confirm=True):
if not os.isatty(sys.stdin.fileno()):
input = sys.stdin.readline()
if not input:
raise Error("can't get passphrase - broken input")
return input.rstrip()
while True:
passphrase = getpass.getpass("Passphrase: ")
if not confirm:
return passphrase
confirm_passphrase = getpass.getpass("Confirm passphrase: ")
if passphrase == confirm_passphrase:
break
print >> sys.stderr, "Sorry, passphrases do not match"
return passphrase