blob: f18a1705d4dfa43e91f4171a8fd7f1ac653267bd [file] [log] [blame]
Steffen Jaeckel26dd9932021-07-08 15:57:33 +02001/* SPDX-License-Identifier: GPL-2.0+ */
2/* Copyright (C) 2020 Steffen Jaeckel <jaeckel-floss@eyet-services.de> */
3
4/**
5 * Compare should with the processed passphrase.
6 *
7 * @should The crypt-style string to compare against
8 * @passphrase The plaintext passphrase
9 * @equal Pointer to an int where the result is stored
10 * '0' = unequal
11 * '1' = equal
Steffen Jaeckel29bbe712021-07-08 15:57:34 +020012 * @return 0 on success, error code of errno else
Steffen Jaeckel26dd9932021-07-08 15:57:33 +020013 */
Steffen Jaeckel29bbe712021-07-08 15:57:34 +020014int crypt_compare(const char *should, const char *passphrase, int *equal);