Skip to content

Commit

Permalink
Updates for version 1.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
glv2 committed Jun 6, 2016
1 parent 68af5ae commit 5e9e710
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2016-06-06 Guillaume LE VAILLANT <[email protected]>
Version 1.2.1
Fix mutex for dictionary mode.

2016-01-10 Guillaume LE VAILLANT <[email protected]>
Version 1.2.0
Root privileges are not required anymore.
Expand Down
4 changes: 4 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 1.2.1
2016-06-06
Fix mutex for dictionary mode.

Version 1.2.0
2016-01-08
Root privileges are not required anymore because cryptsetup is called in
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ It can be used in two ways:
- try all the possible passwords given a charset
- try all the passwords in a file

There is a command line option to specify the number of threads to use.
There is a command line option to specify the number of threads to use.

Sending a USR1 signal to a running bruteforce-luks process makes it print
progress and continue.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT(bruteforce_luks, 1.2.0)
AC_INIT(bruteforce_luks, 1.2.1)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR(src/bruteforce-luks.c)

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Copyright 2014 Guillaume LE VAILLANT
# Distributed under the terms of the GNU General Public License v3

EAPI="5"

inherit eutils autotools

DESCRIPTION="A bruteforce cracker for LUKS encrypted volumes."
HOMEPAGE="https://github.com/glv2/${PN}"
SRC_URI="https://github.com/glv2/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"

DEPEND="
sys-fs/cryptsetup
"
RDEPEND="${DEPEND}"

src_prepare() {
eautoreconf
}

src_configure() {
econf
}

src_install() {
einstall
dodoc AUTHORS ChangeLog NEWS README
}
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef VERSION_H
#define VERSION_H 1

#define VERSION_NUMBER "1.2.0"
#define VERSION_NUMBER "1.2.1"

#endif

0 comments on commit 5e9e710

Please sign in to comment.