diff options
author | Kevin Coffman <kwc@citi.umich.edu> | 2006-11-17 19:56:35 +0000 |
---|---|---|
committer | Kevin Coffman <kwc@citi.umich.edu> | 2006-11-17 19:56:35 +0000 |
commit | f8bbc4da2109b560d65881c3e0b66775c85df165 (patch) | |
tree | 836a92e2496c7da12e1e5df4fdd3108f20a00a65 /src/include/krb5 | |
parent | e91c20fb8b51c22f8a81ebd8f81343f4bd1d0896 (diff) | |
download | krb5-f8bbc4da2109b560d65881c3e0b66775c85df165.tar.gz krb5-f8bbc4da2109b560d65881c3e0b66775c85df165.tar.xz krb5-f8bbc4da2109b560d65881c3e0b66775c85df165.zip |
Didn't include header changes in the previous commit
ticket: 4799
Target_Version: 1.6
Tags: pullup
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18837 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/krb5')
-rw-r--r-- | src/include/krb5/krb5.hin | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/include/krb5/krb5.hin b/src/include/krb5/krb5.hin index 42d141ee3e..7dacc5737c 100644 --- a/src/include/krb5/krb5.hin +++ b/src/include/krb5/krb5.hin @@ -437,9 +437,9 @@ krb5_error_code KRB5_CALLCONV size_t *blocksize); krb5_error_code KRB5_CALLCONV - krb5_c_keylength + krb5_c_keylengths (krb5_context context, krb5_enctype enctype, - size_t *keylength); + size_t *keybytes, size_t *keylength); krb5_error_code KRB5_CALLCONV krb5_c_init_state @@ -463,6 +463,11 @@ krb5_error_code KRB5_CALLCONV (krb5_context context, krb5_enctype enctype, krb5_keyblock *k5_random_key); +krb5_error_code KRB5_CALLCONV + krb5_c_random_to_key + (krb5_context context, krb5_enctype enctype, + krb5_data *random_data, krb5_keyblock *k5_random_key); + /* Register a new entropy sample with the PRNG. may cause * the PRNG to be reseeded, although this is not guaranteed. See previous randsource definitions * for information on how each source should be used. |