Skip to content

Commit

Permalink
Fix issue with Random Integer Key
Browse files Browse the repository at this point in the history
  • Loading branch information
mandeep committed May 21, 2024
1 parent 18fd9d4 commit 440493b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,21 @@ All notable changes to this project will be documented in this file.
Unreleased
==========

GUI
---

0.10.2 - 2024-05-20
===================

- Fix issue with Random Integer Key option where the tomb would not be created. This was due to a change in the Tomb API

0.10.1 - 2024-05-16
===================

- Fix readability issue with README and PyPI

0.10.0 - 2024-05-15
===================

- Migrate pkg_resources to importlib.resources for Python 3.12 support
- Migrate pkg_resources to importlib.resources for Python 3.12 support

0.9.0 - 2022-10-18
==================
Expand Down
4 changes: 1 addition & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.. image:: mausoleum.png

|pypiversion| |pypistatus| |pythonversion| |pypiformat| |license|
|pypiversion| |pythonversion| |pypiformat| |license|

Mausoleum consists of a command line application and GUI application wrapped around Tomb
(the Crypto Undertaker). Both applications were created with the intention of making
Expand Down Expand Up @@ -115,8 +115,6 @@ changes. For other changes, please open an issue on the repository's issue track

.. |pypiversion| image:: https://img.shields.io/pypi/v/mausoleum.svg
:target: https://pypi.org/project/mausoleum/
.. |pypistatus| image:: https://img.shields.io/pypi/status/mausoleum.svg
:target: https://pypi.org/project/mausoleum/
.. |pythonversion| image:: https://img.shields.io/pypi/pyversions/mausoleum.svg
:target: https://pypi.org/project/mausoleum/
.. |pypiformat| image:: https://img.shields.io/pypi/format/mausoleum.svg
Expand Down
2 changes: 1 addition & 1 deletion mausoleum/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def forge_tomb(key, password, path='tomb', kdf=0, sudo=None, debug=False):
arguments = ['sudo', '--stdin', path, 'forge', '--unsafe', '--tomb-pwd', password, '-k', key]

if debug:
arguments.extend(['--ignore-swap', '--use-urandom'])
arguments.extend(['--ignore-swap', '--use-random'])

if kdf > 0:
arguments.extend(['--kdf', str(kdf)])
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='mausoleum',
version='0.10.1',
version='0.10.2',
description='A Python GUI, CLI, and wrapper for Tomb',
long_description=long_description,
long_description_content_type='text/x-rst',
Expand Down

0 comments on commit 440493b

Please sign in to comment.