Merge pull request #450 from linxon/app-crypt/bruteforce-luks

bruteforce-luks: new tool
This commit is contained in:
Anton Bolshakov 2019-04-17 19:31:30 +08:00 committed by GitHub
commit d8800c2ec6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1 @@
DIST bruteforce-luks-1.3.1.tar.gz 26430 BLAKE2B 64b2614ae97f8b82618ffa13b88ca15cf74d89d74cd84c43aa93c84d6a2cc3b16b3c5ed0321ecf27fc6feecbd3d5d7383cfebfe3b81160a533cf9cdcb52747d9 SHA512 d399c23dd194420ae0f8232fb800613e7445bcd82035db31b86f0eda306c95b792b9da6c703afce15ddfb535b5944379d098bda19bce246aa8689957180e0925

View file

@ -0,0 +1 @@
bruteforce-luks-9999.ebuild

View file

@ -0,0 +1,31 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit eutils autotools
DESCRIPTION="A bruteforce cracker for LUKS encrypted volumes"
HOMEPAGE="https://github.com/glv2/bruteforce-luks"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/glv2/bruteforce-luks"
else
SRC_URI="https://github.com/glv2/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
fi
RESTRICT="mirror"
LICENSE="GPL-3"
SLOT="0"
DEPEND="sys-fs/cryptsetup"
RDEPEND="${DEPEND}"
DOCS=( AUTHORS ChangeLog NEWS README )
src_prepare() {
eautoreconf
eapply_user
}