passphera-core 0.6.0__tar.gz → 0.7.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {passphera-core-0.6.0 → passphera-core-0.7.0}/PKG-INFO +1 -1
- {passphera-core-0.6.0 → passphera-core-0.7.0}/passphera_core.egg-info/PKG-INFO +1 -1
- {passphera-core-0.6.0 → passphera-core-0.7.0}/setup.py +1 -1
- {passphera-core-0.6.0 → passphera-core-0.7.0}/README.md +0 -0
- {passphera-core-0.6.0 → passphera-core-0.7.0}/passphera_core/__init__.py +0 -0
- {passphera-core-0.6.0 → passphera-core-0.7.0}/passphera_core/exceptions.py +0 -0
- {passphera-core-0.6.0 → passphera-core-0.7.0}/passphera_core/generator.py +2 -2
- {passphera-core-0.6.0 → passphera-core-0.7.0}/passphera_core.egg-info/SOURCES.txt +0 -0
- {passphera-core-0.6.0 → passphera-core-0.7.0}/passphera_core.egg-info/dependency_links.txt +0 -0
- {passphera-core-0.6.0 → passphera-core-0.7.0}/passphera_core.egg-info/top_level.txt +0 -0
- {passphera-core-0.6.0 → passphera-core-0.7.0}/setup.cfg +0 -0
File without changes
|
File without changes
|
File without changes
|
@@ -178,9 +178,9 @@ class PasswordGenerator:
|
|
178
178
|
password = self.generate_raw_password(text)
|
179
179
|
self._algorithm_name = old_algorithm
|
180
180
|
password = self.generate_raw_password(password)
|
181
|
+
for char, replacement in self._characters_replacements.items():
|
182
|
+
password = password.replace(char, replacement)
|
181
183
|
for char in password:
|
182
184
|
if char in text:
|
183
185
|
password = password.replace(char, char.upper())
|
184
|
-
for char, replacement in self._characters_replacements.items():
|
185
|
-
password = password.replace(char, replacement)
|
186
186
|
return password
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|