2016-05-20 20:27:20 +00:00
|
|
|
from __future__ import print_function
|
2014-07-09 22:02:34 +00:00
|
|
|
import sys
|
|
|
|
import math
|
2016-11-28 16:56:32 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
from PyQt4.QtGui import (QPushButton, QLineEdit, QSizePolicy, QRegExpValidator, QLabel,
|
|
|
|
QApplication, QWidget, QGridLayout, QVBoxLayout, QHBoxLayout)
|
|
|
|
from PyQt4.QtCore import QObject, SIGNAL, QRegExp, Qt, QT_VERSION_STR
|
|
|
|
except:
|
|
|
|
from PyQt5.QtWidgets import (QPushButton, QLineEdit, QSizePolicy, QLabel,
|
|
|
|
QApplication, QWidget, QGridLayout, QVBoxLayout, QHBoxLayout)
|
|
|
|
from PyQt5.QtGui import QRegExpValidator
|
|
|
|
from PyQt5.QtCore import QRegExp, Qt
|
|
|
|
from PyQt5.Qt import QT_VERSION_STR
|
2014-07-09 22:02:34 +00:00
|
|
|
|
|
|
|
class PinButton(QPushButton):
|
|
|
|
def __init__(self, password, encoded_value):
|
|
|
|
super(PinButton, self).__init__('?')
|
|
|
|
self.password = password
|
|
|
|
self.encoded_value = encoded_value
|
|
|
|
|
2016-11-28 16:56:32 +00:00
|
|
|
if QT_VERSION_STR >= '5':
|
|
|
|
self.clicked.connect(self._pressed)
|
|
|
|
elif QT_VERSION_STR >= '4':
|
|
|
|
QObject.connect(self, SIGNAL('clicked()'), self._pressed)
|
|
|
|
else:
|
|
|
|
raise Exception('Unsupported Qt version')
|
2014-07-09 22:02:34 +00:00
|
|
|
|
|
|
|
def _pressed(self):
|
|
|
|
self.password.setText(self.password.text() + str(self.encoded_value))
|
|
|
|
self.password.setFocus()
|
|
|
|
|
|
|
|
class PinMatrixWidget(QWidget):
|
|
|
|
'''
|
|
|
|
Displays widget with nine blank buttons and password box.
|
|
|
|
Encodes button clicks into sequence of numbers for passing
|
2016-02-10 15:46:58 +00:00
|
|
|
into PinAck messages of TREZOR.
|
2014-07-09 22:02:34 +00:00
|
|
|
|
|
|
|
show_strength=True may be useful for entering new PIN
|
|
|
|
'''
|
|
|
|
def __init__(self, show_strength=True, parent=None):
|
|
|
|
super(PinMatrixWidget, self).__init__(parent)
|
2016-01-12 23:17:38 +00:00
|
|
|
|
2014-07-09 22:02:34 +00:00
|
|
|
self.password = QLineEdit()
|
|
|
|
self.password.setValidator(QRegExpValidator(QRegExp('[1-9]+'), None))
|
|
|
|
self.password.setEchoMode(QLineEdit.Password)
|
2016-11-28 16:56:32 +00:00
|
|
|
|
|
|
|
if QT_VERSION_STR >= '5':
|
|
|
|
self.password.textChanged.connect(self._password_changed)
|
|
|
|
elif QT_VERSION_STR >= '4':
|
|
|
|
QObject.connect(self.password, SIGNAL('textChanged(QString)'), self._password_changed)
|
|
|
|
else:
|
|
|
|
raise Exception('Unsupported Qt version')
|
2014-07-09 22:02:34 +00:00
|
|
|
|
|
|
|
self.strength = QLabel()
|
|
|
|
self.strength.setMinimumWidth(75)
|
|
|
|
self.strength.setAlignment(Qt.AlignCenter)
|
|
|
|
self._set_strength(0)
|
|
|
|
|
|
|
|
grid = QGridLayout()
|
|
|
|
grid.setSpacing(0)
|
|
|
|
for y in range(3)[::-1]:
|
|
|
|
for x in range(3):
|
|
|
|
button = PinButton(self.password, x + y * 3 + 1)
|
|
|
|
button.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)
|
|
|
|
button.setFocusPolicy(Qt.NoFocus)
|
|
|
|
grid.addWidget(button, 3 - y, x)
|
|
|
|
|
|
|
|
hbox = QHBoxLayout()
|
|
|
|
hbox.addWidget(self.password)
|
|
|
|
if show_strength:
|
|
|
|
hbox.addWidget(self.strength)
|
|
|
|
|
|
|
|
vbox = QVBoxLayout()
|
|
|
|
vbox.addLayout(grid)
|
|
|
|
vbox.addLayout(hbox)
|
|
|
|
self.setLayout(vbox)
|
|
|
|
|
|
|
|
def _set_strength(self, strength):
|
|
|
|
if strength < 3000:
|
|
|
|
self.strength.setText('weak')
|
|
|
|
self.strength.setStyleSheet("QLabel { color : #d00; }")
|
|
|
|
elif strength < 60000:
|
|
|
|
self.strength.setText('fine')
|
|
|
|
self.strength.setStyleSheet("QLabel { color : #db0; }")
|
|
|
|
elif strength < 360000:
|
|
|
|
self.strength.setText('strong')
|
|
|
|
self.strength.setStyleSheet("QLabel { color : #0a0; }")
|
|
|
|
else:
|
|
|
|
self.strength.setText('ULTIMATE')
|
|
|
|
self.strength.setStyleSheet("QLabel { color : #000; font-weight: bold;}")
|
|
|
|
|
|
|
|
def _password_changed(self, password):
|
|
|
|
self._set_strength(self.get_strength())
|
|
|
|
|
|
|
|
def get_strength(self):
|
|
|
|
digits = len(set(str(self.password.text())))
|
|
|
|
strength = math.factorial(9) / math.factorial(9 - digits)
|
|
|
|
return strength
|
|
|
|
|
|
|
|
def get_value(self):
|
|
|
|
return self.password.text()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
'''
|
|
|
|
Demo application showing PinMatrix widget in action
|
|
|
|
'''
|
2016-11-28 16:56:32 +00:00
|
|
|
app = QApplication(sys.argv)
|
2014-07-09 22:02:34 +00:00
|
|
|
|
|
|
|
matrix = PinMatrixWidget()
|
|
|
|
|
|
|
|
def clicked():
|
2016-05-20 11:36:17 +00:00
|
|
|
print("PinMatrix value is", matrix.get_value())
|
|
|
|
print("Possible button combinations:", matrix.get_strength())
|
2014-07-09 22:02:34 +00:00
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
ok = QPushButton('OK')
|
2016-11-28 16:56:32 +00:00
|
|
|
if QT_VERSION_STR >= '5':
|
|
|
|
ok.clicked.connect(clicked)
|
|
|
|
elif QT_VERSION_STR >= '4':
|
|
|
|
QObject.connect(ok, SIGNAL('clicked()'), clicked)
|
|
|
|
else:
|
|
|
|
raise Exception('Unsupported Qt version')
|
2014-07-09 22:02:34 +00:00
|
|
|
|
|
|
|
vbox = QVBoxLayout()
|
|
|
|
vbox.addWidget(matrix)
|
|
|
|
vbox.addWidget(ok)
|
|
|
|
|
|
|
|
w = QWidget()
|
|
|
|
w.setLayout(vbox)
|
|
|
|
w.move(100, 100)
|
|
|
|
w.show()
|
|
|
|
|
2016-11-28 16:56:32 +00:00
|
|
|
app.exec_()
|