passphera-core 0.3.2__tar.gz → 0.3.3__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: passphera-core
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: The core system of passphera project
5
5
  Home-page: https://github.com/passphera/core
6
6
  Author: Fathi Abdelmalek
@@ -0,0 +1,2 @@
1
+ from .generator import PasswordGenerator
2
+ from .exceptions import InvalidAlgorithmException
@@ -219,10 +219,9 @@ class PasswordGenerator:
219
219
  """
220
220
  old_algorithm = self._algorithm_name
221
221
  self._algorithm_name = 'affine'
222
- self._update_algorithm_properties()
223
222
  self._password = self.generate_raw_password()
224
223
  self._algorithm_name = old_algorithm
225
- self._update_algorithm_properties()
224
+ self._password = self.generate_raw_password()
226
225
  for char, replacement in self._chars_replacements.items():
227
226
  self._password = self._password.replace(char, replacement)
228
227
  for char in self._password:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: passphera-core
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: The core system of passphera project
5
5
  Home-page: https://github.com/passphera/core
6
6
  Author: Fathi Abdelmalek
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5
5
 
6
6
  setup(
7
7
  name='passphera-core',
8
- version='0.3.2',
8
+ version='0.3.3',
9
9
  author='Fathi Abdelmalek',
10
10
  author_email='abdelmalek.fathi.2001@gmail.com',
11
11
  url='https://github.com/passphera/core',
@@ -1,2 +0,0 @@
1
- from .generator import PasswordGenerator as PasswordGenerator
2
- from .exceptions import InvalidAlgorithmException as InvalidAlgorithmException
File without changes
File without changes