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