passphera-core 0.3.3__py3-none-any.whl → 0.3.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- passphera_core/generator.py +2 -2
- {passphera_core-0.3.3.dist-info → passphera_core-0.3.4.dist-info}/METADATA +1 -1
- passphera_core-0.3.4.dist-info/RECORD +7 -0
- passphera_core-0.3.3.dist-info/RECORD +0 -7
- {passphera_core-0.3.3.dist-info → passphera_core-0.3.4.dist-info}/WHEEL +0 -0
- {passphera_core-0.3.3.dist-info → passphera_core-0.3.4.dist-info}/top_level.txt +0 -0
passphera_core/generator.py
CHANGED
@@ -222,9 +222,9 @@ class PasswordGenerator:
|
|
222
222
|
self._password = self.generate_raw_password()
|
223
223
|
self._algorithm_name = old_algorithm
|
224
224
|
self._password = self.generate_raw_password()
|
225
|
-
for char, replacement in self._chars_replacements.items():
|
226
|
-
self._password = self._password.replace(char, replacement)
|
227
225
|
for char in self._password:
|
228
226
|
if char in self._text:
|
229
227
|
self._password = self._password.replace(char, char.upper())
|
228
|
+
for char, replacement in self._chars_replacements.items():
|
229
|
+
self._password = self._password.replace(char, replacement)
|
230
230
|
return self._password
|
@@ -0,0 +1,7 @@
|
|
1
|
+
passphera_core/__init__.py,sha256=zDJS1wcjyfEwO4YifFwghhWE3fM2pZNqodx8B4PkGDA,91
|
2
|
+
passphera_core/exceptions.py,sha256=M0wVUORrukx2wIkHAz42Sz4BMMY8JssZp7iuHaEjARc,155
|
3
|
+
passphera_core/generator.py,sha256=9Iz9ZCwYk4T0syefhErwWN5TentL2KGR_y7FjwB1l-A,7821
|
4
|
+
passphera_core-0.3.4.dist-info/METADATA,sha256=5GV9eRooBYFEtkMFrJR3mYFPenHct_eP4xJ8919D_so,627
|
5
|
+
passphera_core-0.3.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
6
|
+
passphera_core-0.3.4.dist-info/top_level.txt,sha256=aDUX2iWGOyfzyf6XakLWTbgeWqNrypMHO074Qratyds,15
|
7
|
+
passphera_core-0.3.4.dist-info/RECORD,,
|
@@ -1,7 +0,0 @@
|
|
1
|
-
passphera_core/__init__.py,sha256=zDJS1wcjyfEwO4YifFwghhWE3fM2pZNqodx8B4PkGDA,91
|
2
|
-
passphera_core/exceptions.py,sha256=M0wVUORrukx2wIkHAz42Sz4BMMY8JssZp7iuHaEjARc,155
|
3
|
-
passphera_core/generator.py,sha256=656A3qWsir4XMHpGuMergFhTsLMDorgRpX7bPbSLa6E,7821
|
4
|
-
passphera_core-0.3.3.dist-info/METADATA,sha256=ZPQFIWpgRZ7msZiHDf-0j5PmOPCxbnXJR39QfaUp_c4,627
|
5
|
-
passphera_core-0.3.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
6
|
-
passphera_core-0.3.3.dist-info/top_level.txt,sha256=aDUX2iWGOyfzyf6XakLWTbgeWqNrypMHO074Qratyds,15
|
7
|
-
passphera_core-0.3.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|