-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathscrypt.spec.in
More file actions
42 lines (31 loc) · 1020 Bytes
/
scrypt.spec.in
File metadata and controls
42 lines (31 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Name: scrypt
Version: @VERSION@
Release: @REL@%{?dist}
Summary: A simple password-based encryption utility
Group: System Environment/Base
License: BSD
URL: https://www.tarsnap.com/scrypt.html
Source0: https://www.tarsnap.com/scrypt/scrypt-%{version}.tgz
#Source1: https://www.tarsnap.com/scrypt/scrypt-sigs-%{version}.asc
BuildRequires: gcc
BuildRequires: openssl-devel
%description
A simple password-based encryption utility is available as a demonstration of
the scrypt key derivation function. On modern hardware and with default
parameters, the cost of cracking the password on a file encrypted by scrypt enc
is approximately 100 billion times more than the cost of cracking the same
password on a file encrypted by openssl enc; this means that a five-character
password using scrypt is stronger than a ten-character password using openssl.
%prep
%setup -q
%build
%configure
make %{?_smp_mflags}
%install
%make_install
%files
%doc
/usr/bin/scrypt
/usr/share/man/man1/scrypt.1.gz
%changelog
@CHANGELOG@