5 |
5 |
6 """ |
6 """ |
7 Package implementing cryptography related functionality. |
7 Package implementing cryptography related functionality. |
8 """ |
8 """ |
9 |
9 |
|
10 import base64 |
10 import random |
11 import random |
11 import base64 |
|
12 |
12 |
13 from PyQt6.QtCore import QCoreApplication |
13 from PyQt6.QtCore import QCoreApplication |
14 from PyQt6.QtWidgets import QLineEdit, QInputDialog |
14 from PyQt6.QtWidgets import QInputDialog, QLineEdit |
15 |
15 |
|
16 from eric7 import Preferences |
16 from eric7.EricWidgets import EricMessageBox |
17 from eric7.EricWidgets import EricMessageBox |
17 |
|
18 from eric7 import Preferences |
|
19 |
18 |
20 ############################################################################### |
19 ############################################################################### |
21 ## password handling functions below |
20 ## password handling functions below |
22 ############################################################################### |
21 ############################################################################### |
23 |
22 |