From 3b08dec5ee634f83ee18e1753d5ffe0ac5e3c458 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Thu, 29 Jul 2010 16:34:00 +0200 Subject: Move crypto functions into its own subdir A refactoring patch that creates a common util/crypto subdir with per-implementation subdirectories for each underlying crypto library supported by SSSD. --- src/util/crypto/sss_crypto.h | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/util/crypto/sss_crypto.h (limited to 'src/util/crypto/sss_crypto.h') diff --git a/src/util/crypto/sss_crypto.h b/src/util/crypto/sss_crypto.h new file mode 100644 index 00000000..5512c5d9 --- /dev/null +++ b/src/util/crypto/sss_crypto.h @@ -0,0 +1,4 @@ + +int s3crypt_sha512(TALLOC_CTX *mmectx, + const char *key, const char *salt, char **_hash); +int s3crypt_gen_salt(TALLOC_CTX *memctx, char **_salt); -- cgit