blob: 026e993c6b1580d8127cb86a4da1a4247372d1a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <talloc.h>
#include <errno.h>
#include "util/crypto/sss_crypto.h"
int sss_password_encrypt(TALLOC_CTX *mem_ctx, const char *password, int plen,
enum obfmethod meth, char **obfpwd)
{
return ENOSYS;
}
int sss_password_decrypt(TALLOC_CTX *mem_ctx, char *b64encoded,
char **password)
{
return ENOSYS;
}
|