Skip to content

v1.1.3

Compare
Choose a tag to compare
@HacKanCuBa HacKanCuBa released this 11 Aug 23:21
· 30 commits to master since this release
v1.1.3

v1.1.3

All release tags are signed, and release packages (tar.gz and zip) are
also signed. Always check signatures prior using this software.

Changes

From the previous release (v1.1.2):

New features

  • Revert changes in password generator.

Bug fixes

  • Minor bugfix on exception when wordlist can't be opened.

Installing

Verify signature, then run make install as a privileged user or make altinstall as limited user:

wget -O passphrase-v1.1.3.tar.gz https://github.com/HacKanCuBa/passphrase-py/archive/v1.1.3.tar.gz
wget https://github.com/HacKanCuBa/passphrase-py/releases/download/v1.1.3/passphrase-v1.1.3.tar.gz.sig
gpg --keyserver hkp://pool.sks-keyservers.net --recv-keys 0x35710D312FDE468B
gpg --verify passphrase-v1.1.3.tar.gz.sig 
tar -xf passphrase-v1.1.3.tar.gz
cd passphrase-py-1.1.3/

Then run sudo make install or make altinstall (it will install it in the user's home directory).

pip

To install this version with pip, run under your virtualenv pip install hc-passphrase==1.1.3
Prefer the previous installing method rather than pip because of pip's lack of cryptographic validations.

When using this version in a requirements file, add as:

hc-passphrase==1.1.3 \
    --hash=sha256:89a834d371804521ed58145858995d013d0ff808c2d6dfa64125a3d211491eb9 \
    --hash=sha256:6c93747dea9965f117070263663f9529bd54d241ed64b528e9c5775059d6bb8c

Where the first hash corresponds to the wheel file and the second one to the source file.