blob: 031db5845f16e19517379f5c9dadeb29eed173ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* lib/crypto/openss/des/afsstring2key.c
*
* Copyright 2009 by the Massachusetts Institute
* of Technology.
* All Rights Reserved.
*
*/
#include "k5-int.h"
#include "des_int.h"
#include <ctype.h>
krb5_error_code
mit_afs_string_to_key (krb5_keyblock *keyblock, const krb5_data *data,
const krb5_data *salt)
{
return KRB5_CRYPTO_INTERNAL;
}
char *
mit_afs_crypt(const char *pw, const char *salt,
char *iobuf)
{
/* Unsupported operation */
return NULL;
}
|