1 // SPDX-License-Identifier: GPL-2.0+
5 #include "crypt-port.h"
7 typedef int (*crypt_fn)(const char *, size_t, const char *, size_t, uint8_t *,
8 size_t, void *, size_t);
10 const unsigned char ascii64[65] =
11 "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
13 static void equals_constant_time(const void *a_, const void *b_, size_t len,
17 const u8 *a = a_, *b = b_;
20 for (i = 0; i < len; i++)
31 int crypt_compare(const char *should, const char *passphrase, int *equal)
33 u8 output[CRYPT_OUTPUT_SIZE], scratch[ALG_SPECIFIC_SIZE];
40 #if defined(CONFIG_CRYPT_PW_SHA256)
41 { "$5$", crypt_sha256crypt_rn_wrapped },
43 #if defined(CONFIG_CRYPT_PW_SHA512)
44 { "$6$", crypt_sha512crypt_rn_wrapped },
51 for (n = 0; n < ARRAY_SIZE(crypt_algos); ++n) {
52 if (!crypt_algos[n].prefix)
54 if (strncmp(should, crypt_algos[n].prefix, 3) == 0)
58 if (n >= ARRAY_SIZE(crypt_algos))
61 err = crypt_algos[n].crypt(passphrase, strlen(passphrase), should, 0,
62 output, sizeof(output), scratch,
64 /* early return on error, nothing really happened inside the crypt() function */
68 equals_constant_time(should, output, strlen((const char *)output),
71 memset(scratch, 0, sizeof(scratch));
72 memset(output, 0, sizeof(output));