diff options
author | Greg Hudson <ghudson@mit.edu> | 2011-03-02 05:29:29 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2011-03-02 05:29:29 +0000 |
commit | ce6d249fdf1dd7dda5b202836ed387500324ae2a (patch) | |
tree | b0550b898743ddfdff76ac6647fca7a12d6db284 /src/lib/crypto/builtin/init.c | |
parent | e2d6d9ce23b878334d70a0f9c697064873619b75 (diff) | |
download | krb5-ce6d249fdf1dd7dda5b202836ed387500324ae2a.tar.gz krb5-ce6d249fdf1dd7dda5b202836ed387500324ae2a.tar.xz krb5-ce6d249fdf1dd7dda5b202836ed387500324ae2a.zip |
Consolidate almost all lib/crypto/krb headers into a single
crypto_int.h. In that header, define and document responsibilities
for crypto modules, some of which are satisfied through a
module-specific crypto_mod.h. In the OpenSSL and NSS modules, remove
many of the headers and sources providing functionality which isn't
needed by lib/crypto/krb any more (direct interfaces to MD4, MD5, and
SHA-1 hashing, as well as DES weak key testing). Change most
Makefile.ins to only include headers from lib/crypto/krb and
lib/crypto/$(CRYPTO_IMPL), instead of from many different directories.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24677 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/builtin/init.c')
-rw-r--r-- | src/lib/crypto/builtin/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/crypto/builtin/init.c b/src/lib/crypto/builtin/init.c index 5f8d3b1c6..cc35ba7e6 100644 --- a/src/lib/crypto/builtin/init.c +++ b/src/lib/crypto/builtin/init.c @@ -28,7 +28,7 @@ * Built-in back-end library init functions */ -#include "k5-int.h" +#include "crypto_int.h" int krb5int_crypto_impl_init(void) |