summaryrefslogtreecommitdiffstats
path: root/src/util/crypto/sss_crypto.h
blob: 66394aeb47c5724dece46e93c200fdad2ba92fe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

int s3crypt_sha512(TALLOC_CTX *mmectx,
                   const char *key, const char *salt, char **_hash);
int s3crypt_gen_salt(TALLOC_CTX *memctx, char **_salt);

/* Methods of obfuscation. */
enum obfmethod {
    AES_256,
    NUM_OBFMETHODS
};

int test2(void);

int sss_password_encrypt(TALLOC_CTX *mem_ctx, const char *password, int plen,
                         enum obfmethod meth, char **obfpwd);

int sss_password_decrypt(TALLOC_CTX *mem_ctx, char *b64encoded,
                         char **password);