mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 05:53:30 +08:00
0d83de3832
The changes brought by this commit should have been part of the previous commit, but were not due to a mistake. This commit implements the following changes to the scrypt package: - move from "Libraries -> Crypto" to "System tools", since it only installs one binary, scrypt, and no library. - bump from 1.1.6 to 1.2.0 - add comment in the .hash file explaining where the hash is coming from. - add missing dependency on OpenSSL - use BSD-2c as the license code, instead of BSD2 - use 'main.c' as the license file. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 lines
289 B
Plaintext
10 lines
289 B
Plaintext
config BR2_PACKAGE_SCRYPT
|
|
bool "scrypt"
|
|
select BR2_PACKAGE_OPENSSL
|
|
help
|
|
A password-based key derivation function specifically
|
|
designed to make it costly to perform large-scale custom
|
|
hardware attacks by requiring large amounts of memory.
|
|
|
|
http://www.tarsnap.com/scrypt.html
|