]> git.proxmox.com Git - efi-boot-shim.git/blob - include/crypt_blowfish.h
Force usage of newest revocations at build time
[efi-boot-shim.git] / include / crypt_blowfish.h
1 // SPDX-License-Identifier: BSD-2-Clause-Patent
2 /*
3 * The crypt_blowfish homepage is:
4 *
5 * http://www.openwall.com/crypt/
6 *
7 * This code comes from John the Ripper password cracker, with reentrant
8 * and crypt(3) interfaces added, but optimizations specific to password
9 * cracking removed.
10 *
11 * Written by Solar Designer <solar at openwall.com> in 2000-2011.
12 * No copyright is claimed, and the software is hereby placed in the public
13 * domain. In case this attempt to disclaim copyright and place the software
14 * in the public domain is deemed null and void, then the software is
15 * Copyright (c) 2000-2011 Solar Designer and it is hereby released to the
16 * general public under the following terms:
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted.
20 *
21 * There's ABSOLUTELY NO WARRANTY, express or implied.
22 *
23 * See crypt_blowfish.c for more information.
24 */
25
26 #ifndef SHIM_CRYPT_BLOWFISH_H
27 #define SHIM_CRYPT_BLOWFISH_H
28
29 char *crypt_blowfish_rn(const char *key, const char *setting,
30 char *output, int size);
31
32 #endif /* SHIM_CRYPT_BLOWFISH_H */