Lines Matching defs:passphrase
464 static void pbkdf2_sha512(const char *passphrase, struct salt *salt,
468 size_t passphrase_size = strlen(passphrase);
492 memcpy(&saltbuf[F2FS_MAX_SALT_SIZE], passphrase, passphrase_size);
494 memcpy(&buf[SHA512_LENGTH], passphrase, passphrase_size);
501 * buf: [previous hash || passphrase]
527 static void get_passphrase(char *passphrase, int len)
534 p = fgets(passphrase, len, stdin);
541 p = strrchr(passphrase, '\n');
543 p = passphrase + len - 1;
695 "Prompts the user for a passphrase and inserts it into the specified\n" \
719 /* Salt value for passphrase. */
746 printf("Enter passphrase (echo disabled): ");