Skip to content

Commit

Permalink
Version 1.2.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
glv2 committed Nov 27, 2016
1 parent 0403d5d commit fe7e81a
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2016-11-27 Guillaume LE VAILLANT <[email protected]>
Version 1.2.2
Add bruteforcing speed and last tried password to progress info.

2016-06-06 Guillaume LE VAILLANT <[email protected]>
Version 1.2.1
Fix mutex for dictionary mode.
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.2
2016-11-27
Add bruteforcing speed and last tried password to progress info.

Version 1.2.1
2016-06-06
Fix mutex for dictionary mode.
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.1)
AC_INIT(bruteforce_luks, 1.2.2)
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.1"
#define VERSION_NUMBER "1.2.2"

#endif

0 comments on commit fe7e81a

Please sign in to comment.