mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
12 lines
144 B
C
12 lines
144 B
C
|
#ifndef SHA256CRYPT_H
|
||
|
#define SHA256CRYPT_H
|
||
|
|
||
|
extern "C" {
|
||
|
|
||
|
char *
|
||
|
sha256_crypt (const char *key, const char *salt);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // SHA256CRYPT_H
|