1 /* Copyright (c) 2001, Matej Pfajfar.
2 * Copyright (c) 2001-2004, Roger Dingledine.
3 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
4 * Copyright (c) 2007-2015, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
7 #define CRYPTO_S2K_PRIVATE
12 #include "crypto_s2k.h"
14 #include <openssl/evp.h>
16 #ifdef HAVE_LIBSCRYPT_H
18 #include <libscrypt.h>
21 /* Encoded secrets take the form:
24 u8 salt_and_parameters[depends on type];
25 u8 key[depends on type];
27 As a special case, if the encoded secret is exactly 29 bytes long,
31 00 -- RFC2440. salt_and_parameters is 9 bytes. key is 20 bytes.
32 salt_and_parameters is 8 bytes random salt,
33 1 byte iteration info.
34 01 -- PKBDF2_SHA1. salt_and_parameters is 17 bytes. key is 20 bytes.
35 salt_and_parameters is 16 bytes random salt,
36 1 byte iteration info.
37 02 -- SCRYPT_SALSA208_SHA256. salt_and_parameters is 18 bytes. key is
39 salt_and_parameters is 18 bytes random salt, 2 bytes iteration
43 #define S2K_TYPE_RFC2440 0
44 #define S2K_TYPE_PBKDF2 1
45 #define S2K_TYPE_SCRYPT 2
47 #define PBKDF2_SPEC_LEN 17
48 #define PBKDF2_KEY_LEN 20
50 #define SCRYPT_SPEC_LEN 18
51 #define SCRYPT_KEY_LEN 32
53 /** Given an algorithm ID (one of S2K_TYPE_*), return the length of the
54 * specifier part of it, without the prefix type byte. */
56 secret_to_key_spec_len(uint8_t type
)
59 case S2K_TYPE_RFC2440
:
60 return S2K_RFC2440_SPECIFIER_LEN
;
62 return PBKDF2_SPEC_LEN
;
64 return SCRYPT_SPEC_LEN
;
70 /** Given an algorithm ID (one of S2K_TYPE_*), return the length of the
71 * its preferred output. */
73 secret_to_key_key_len(uint8_t type
)
76 case S2K_TYPE_RFC2440
:
87 /** Given a specifier in <b>spec_and_key</b> of length
88 * <b>spec_and_key_len</b>, along with its prefix algorithm ID byte, and along
89 * with a key if <b>key_included</b> is true, check whether the whole
90 * specifier-and-key is of valid length, and return the algorithm type if it
91 * is. Set *<b>legacy_out</b> to 1 iff this is a legacy password hash or
92 * legacy specifier. Return an error code on failure.
95 secret_to_key_get_type(const uint8_t *spec_and_key
, size_t spec_and_key_len
,
96 int key_included
, int *legacy_out
)
98 size_t legacy_len
= S2K_RFC2440_SPECIFIER_LEN
;
103 legacy_len
+= DIGEST_LEN
;
105 if (spec_and_key_len
== legacy_len
) {
107 return S2K_TYPE_RFC2440
;
111 if (spec_and_key_len
== 0)
114 type
= spec_and_key
[0];
115 total_len
= secret_to_key_spec_len(type
);
117 return S2K_BAD_ALGORITHM
;
119 int keylen
= secret_to_key_key_len(type
);
121 return S2K_BAD_ALGORITHM
;
125 if ((size_t)total_len
+ 1 == spec_and_key_len
)
132 * Write a new random s2k specifier of type <b>type</b>, without prefixing
133 * type byte, to <b>spec_out</b>, which must have enough room. May adjust
134 * parameter choice based on <b>flags</b>.
137 make_specifier(uint8_t *spec_out
, uint8_t type
, unsigned flags
)
139 int speclen
= secret_to_key_spec_len(type
);
141 return S2K_BAD_ALGORITHM
;
143 crypto_rand((char*)spec_out
, speclen
);
145 case S2K_TYPE_RFC2440
:
146 /* Hash 64 k of data. */
147 spec_out
[S2K_RFC2440_SPECIFIER_LEN
-1] = 96;
149 case S2K_TYPE_PBKDF2
:
150 /* 131 K iterations */
151 spec_out
[PBKDF2_SPEC_LEN
-1] = 17;
153 case S2K_TYPE_SCRYPT
:
154 if (flags
& S2K_FLAG_LOW_MEM
) {
156 spec_out
[SCRYPT_SPEC_LEN
-2] = 12;
159 spec_out
[SCRYPT_SPEC_LEN
-2] = 15;
162 spec_out
[SCRYPT_SPEC_LEN
-1] = (3u << 4) | (1u << 0);
165 tor_fragile_assert();
166 return S2K_BAD_ALGORITHM
;
172 /** Implement RFC2440-style iterated-salted S2K conversion: convert the
173 * <b>secret_len</b>-byte <b>secret</b> into a <b>key_out_len</b> byte
174 * <b>key_out</b>. As in RFC2440, the first 8 bytes of s2k_specifier
175 * are a salt; the 9th byte describes how much iteration to do.
176 * If <b>key_out_len</b> > DIGEST_LEN, use HDKF to expand the result.
179 secret_to_key_rfc2440(char *key_out
, size_t key_out_len
, const char *secret
,
180 size_t secret_len
, const char *s2k_specifier
)
184 size_t count
, tmplen
;
186 uint8_t buf
[DIGEST_LEN
];
187 tor_assert(key_out_len
< SIZE_T_CEILING
);
190 c
= s2k_specifier
[8];
191 count
= ((uint32_t)16 + (c
& 15)) << ((c
>> 4) + EXPBIAS
);
194 d
= crypto_digest_new();
195 tmplen
= 8+secret_len
;
196 tmp
= tor_malloc(tmplen
);
197 memcpy(tmp
,s2k_specifier
,8);
198 memcpy(tmp
+8,secret
,secret_len
);
201 if (count
>= secret_len
) {
202 crypto_digest_add_bytes(d
, tmp
, secret_len
);
205 crypto_digest_add_bytes(d
, tmp
, count
);
209 crypto_digest_get_digest(d
, (char*)buf
, sizeof(buf
));
211 if (key_out_len
<= sizeof(buf
)) {
212 memcpy(key_out
, buf
, key_out_len
);
214 crypto_expand_key_material_rfc5869_sha256(buf
, DIGEST_LEN
,
215 (const uint8_t*)s2k_specifier
, 8,
216 (const uint8_t*)"EXPAND", 6,
217 (uint8_t*)key_out
, key_out_len
);
219 memwipe(tmp
, 0, tmplen
);
220 memwipe(buf
, 0, sizeof(buf
));
222 crypto_digest_free(d
);
226 * Helper: given a valid specifier without prefix type byte in <b>spec</b>,
227 * whose length must be correct, and given a secret passphrase <b>secret</b>
228 * of length <b>secret_len</b>, compute the key and store it into
229 * <b>key_out</b>, which must have enough room for secret_to_key_key_len(type)
230 * bytes. Return the number of bytes written on success and an error code
234 secret_to_key_compute_key(uint8_t *key_out
, size_t key_out_len
,
235 const uint8_t *spec
, size_t spec_len
,
236 const char *secret
, size_t secret_len
,
240 if (key_out_len
> INT_MAX
)
244 case S2K_TYPE_RFC2440
:
245 secret_to_key_rfc2440((char*)key_out
, key_out_len
, secret
, secret_len
,
247 return (int)key_out_len
;
249 case S2K_TYPE_PBKDF2
: {
251 if (spec_len
< 1 || secret_len
> INT_MAX
|| spec_len
> INT_MAX
)
253 log_iters
= spec
[spec_len
-1];
255 return S2K_BAD_PARAMS
;
256 rv
= PKCS5_PBKDF2_HMAC_SHA1(secret
, (int)secret_len
,
257 spec
, (int)spec_len
-1,
259 (int)key_out_len
, key_out
);
262 return (int)key_out_len
;
265 case S2K_TYPE_SCRYPT
: {
267 uint8_t log_N
, log_r
, log_p
;
272 log_N
= spec
[spec_len
-2];
273 log_r
= (spec
[spec_len
-1]) >> 4;
274 log_p
= (spec
[spec_len
-1]) & 15;
276 return S2K_BAD_PARAMS
;
277 N
= ((uint64_t)1) << log_N
;
280 rv
= libscrypt_scrypt((const uint8_t*)secret
, secret_len
,
281 spec
, spec_len
-2, N
, r
, p
, key_out
, key_out_len
);
284 return (int)key_out_len
;
286 return S2K_NO_SCRYPT_SUPPORT
;
290 return S2K_BAD_ALGORITHM
;
295 * Given a specifier previously constructed with secret_to_key_make_specifier
296 * in <b>spec</b> of length <b>spec_len</b>, and a secret password in
297 * <b>secret</b> of length <b>secret_len</b>, generate <b>key_out_len</b>
298 * bytes of cryptographic material in <b>key_out</b>. The native output of
299 * the secret-to-key function will be truncated if key_out_len is short, and
300 * expanded with HKDF if key_out_len is long. Returns S2K_OKAY on success,
301 * and an error code on failure.
304 secret_to_key_derivekey(uint8_t *key_out
, size_t key_out_len
,
305 const uint8_t *spec
, size_t spec_len
,
306 const char *secret
, size_t secret_len
)
308 int legacy_format
= 0;
309 int type
= secret_to_key_get_type(spec
, spec_len
, 0, &legacy_format
);
315 if (type
== S2K_TYPE_SCRYPT
)
316 return S2K_NO_SCRYPT_SUPPORT
;
319 if (! legacy_format
) {
324 r
= secret_to_key_compute_key(key_out
, key_out_len
, spec
, spec_len
,
325 secret
, secret_len
, type
);
333 * Construct a new s2k algorithm specifier and salt in <b>buf</b>, according
334 * to the bitwise-or of some S2K_FLAG_* options in <b>flags</b>. Up to
335 * <b>buf_len</b> bytes of storage may be used in <b>buf</b>. Return the
336 * number of bytes used on success and an error code on failure.
339 secret_to_key_make_specifier(uint8_t *buf
, size_t buf_len
, unsigned flags
)
344 uint8_t type
= S2K_TYPE_SCRYPT
;
346 uint8_t type
= S2K_TYPE_RFC2440
;
349 if (flags
& S2K_FLAG_NO_SCRYPT
)
350 type
= S2K_TYPE_RFC2440
;
351 if (flags
& S2K_FLAG_USE_PBKDF2
)
352 type
= S2K_TYPE_PBKDF2
;
354 spec_len
= secret_to_key_spec_len(type
);
356 if ((int)buf_len
< spec_len
+ 1)
357 return S2K_TRUNCATED
;
360 rv
= make_specifier(buf
+1, type
, flags
);
368 * Hash a passphrase from <b>secret</b> of length <b>secret_len</b>, according
369 * to the bitwise-or of some S2K_FLAG_* options in <b>flags</b>, and store the
370 * hash along with salt and hashing parameters into <b>buf</b>. Up to
371 * <b>buf_len</b> bytes of storage may be used in <b>buf</b>. Set
372 * *<b>len_out</b> to the number of bytes used and return S2K_OKAY on success;
373 * and return an error code on failure.
376 secret_to_key_new(uint8_t *buf
,
379 const char *secret
, size_t secret_len
,
387 spec_len
= secret_to_key_make_specifier(buf
, buf_len
, flags
);
393 key_len
= secret_to_key_key_len(type
);
398 if ((int)buf_len
< key_len
+ spec_len
)
399 return S2K_TRUNCATED
;
401 rv
= secret_to_key_compute_key(buf
+ spec_len
, key_len
,
403 secret
, secret_len
, type
);
407 *len_out
= spec_len
+ key_len
;
413 * Given a hashed passphrase in <b>spec_and_key</b> of length
414 * <b>spec_and_key_len</b> as generated by secret_to_key_new(), verify whether
415 * it is a hash of the passphrase <b>secret</b> of length <b>secret_len</b>.
416 * Return S2K_OKAY on a match, S2K_BAD_SECRET on a well-formed hash that
417 * doesn't match this secret, and another error code on other errors.
420 secret_to_key_check(const uint8_t *spec_and_key
, size_t spec_and_key_len
,
421 const char *secret
, size_t secret_len
)
424 int type
= secret_to_key_get_type(spec_and_key
, spec_and_key_len
,
439 spec_len
= secret_to_key_spec_len(type
);
440 key_len
= secret_to_key_key_len(type
);
441 tor_assert(spec_len
> 0);
442 tor_assert(key_len
> 0);
443 tor_assert(key_len
<= (int) sizeof(buf
));
444 tor_assert((int)spec_and_key_len
== spec_len
+ key_len
);
445 rv
= secret_to_key_compute_key(buf
, key_len
,
446 spec_and_key
, spec_len
,
447 secret
, secret_len
, type
);
451 if (tor_memeq(buf
, spec_and_key
+ spec_len
, key_len
))
457 memwipe(buf
, 0, sizeof(buf
));