aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-05-25 23:56:29 -0400
committerRob Austein <sra@hactrn.net>2016-05-25 23:56:29 -0400
commit5352d1bd1a5411064e8ac511240da2c8ed68a8c6 (patch)
tree3cefb208b28dcc14b471e8136113e325bd58a2b8 /utils
parent8e6b461094305f47a1f0145eed636ca95cb5c8e5 (diff)
Doh, helps if one actually **uses** the argument one just parsed.
Diffstat (limited to 'utils')
-rwxr-xr-xutils/last_gasp_default_pin2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/last_gasp_default_pin b/utils/last_gasp_default_pin
index c2ca965..70379ad 100755
--- a/utils/last_gasp_default_pin
+++ b/utils/last_gasp_default_pin
@@ -72,7 +72,7 @@ salt = urandom(16)
pin = PBKDF2(password = args.pin,
salt = salt,
- dkLen = 32,
+ dkLen = args.derived_key_length,
count = args.iterations,
prf = HMAC_SHA256)