summaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorZhanna Tsitkov <tsitkova@mit.edu>2010-10-05 03:18:22 +0000
committerZhanna Tsitkov <tsitkova@mit.edu>2010-10-05 03:18:22 +0000
commit4bff2d892d71f928916326e472a1d4460b083bca (patch)
treecc32ff39034ffd6380ce9f3f85a5792f249a16f7 /src/Makefile.in
parent89773093d6b40432e007fe0042afab3891e9512d (diff)
downloadkrb5-4bff2d892d71f928916326e472a1d4460b083bca.tar.gz
krb5-4bff2d892d71f928916326e472a1d4460b083bca.tar.xz
krb5-4bff2d892d71f928916326e472a1d4460b083bca.zip
Improves prng code modularity. Introduces fortuna-like prng that can be used in lieu of yarrow.
Yarrow stays the default prng while fortuna may be engaged during configuration by using "--with-prng-alg=fortuna" flag. Also, nss crypto backend continues to use its own prng. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24420 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 72b7d355a3..64a5aad107 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -204,7 +204,7 @@ WINMAKEFILES=Makefile \
lib\crypto\krb\raw\Makefile lib\crypto\krb\old\Makefile \
lib\crypto\@CRYPTO_IMPL@\sha1\Makefile lib\crypto\@CRYPTO_IMPL@\arcfour\Makefile \
lib\crypto\@CRYPTO_IMPL@\md4\Makefile lib\crypto\@CRYPTO_IMPL@\md5\Makefile \
- lib\crypto\krb\yarrow\Makefile lib\crypto\@CRYPTO_IMPL@\aes\Makefile \
+ lib\crypto\krb\prng\Makefile lib\crypto\@CRYPTO_IMPL@\aes\Makefile \
lib\crypto\crypto_tests \
lib\gssapi\Makefile lib\gssapi\generic\Makefile \
lib\gssapi\krb5\Makefile lib\gssapi\mechglue\Makefile \
@@ -404,7 +404,8 @@ FILES= ./* \
lib/crypto/krb/old/* lib/crypto/krb/raw/* \
lib/crypto/@CRYPTO_IMPL@/sha1/* lib/crypto/@CRYPTO_IMPL@/arcfour/* \
lib/crypto/@CRYPTO_IMPL@/md4/* \
- lib/crypto/@CRYPTO_IMPL@/md5/* lib/crypto/krb/yarrow/* \
+ lib/crypto/@CRYPTO_IMPL@/md5/* lib/crypto/krb/prng/* \
+ lib/crypto/krb/prng/@PRNG_ALG@/* \
lib/crypto/@CRYPTO_IMPL@/* lib/crypto/krb/* lib/crypto/crypto_tests \
lib/gssapi/* lib/gssapi/generic/* lib/gssapi/krb5/* \
lib/gssapi/mechglue/* lib/gssapi/spnego/* \