diff options
author | Greg Hudson <ghudson@mit.edu> | 2009-11-27 09:15:50 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2009-11-27 09:15:50 +0000 |
commit | a405b2509099df5725fbbdb7d19113d11d58ed5b (patch) | |
tree | c236c1d7acb893fd1b985d5a68634750500f99cd /src/lib/crypto/krb/deps | |
parent | 996fb223f419a16481aea18fd12f98f376836a8e (diff) | |
download | krb5-a405b2509099df5725fbbdb7d19113d11d58ed5b.tar.gz krb5-a405b2509099df5725fbbdb7d19113d11d58ed5b.tar.xz krb5-a405b2509099df5725fbbdb7d19113d11d58ed5b.zip |
Move the arcfour directory from the crypto module dirs into krb. This
directory contains the token encryption code (similar to dk, old, and
raw) which is Kerberos-specific. The actual stream cipher lives in
enc_provider/rc4.c, which is still in the module dirs.
arcfour/arcfour-int.h contained the definitions of some structures
used only in enc_provider/rc4.c. Move those definitions into that
source file so that everything in arcfour is at the right level of
abstraction to live in krb.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23367 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/krb/deps')
-rw-r--r-- | src/lib/crypto/krb/deps | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/crypto/krb/deps b/src/lib/crypto/krb/deps index ce7dfe1279..1bd41ecfe5 100644 --- a/src/lib/crypto/krb/deps +++ b/src/lib/crypto/krb/deps @@ -193,10 +193,10 @@ enctype_to_string.so enctype_to_string.po $(OUTPRE)enctype_to_string.$(OBJEXT): etypes.so etypes.po $(OUTPRE)etypes.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ $(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \ $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(srcdir)/../builtin/aes/aes_s2k.h \ - $(srcdir)/../builtin/arcfour/arcfour.h $(srcdir)/../builtin/des/des_int.h \ - $(srcdir)/../builtin/enc_provider/enc_provider.h $(srcdir)/../builtin/hash_provider/hash_provider.h \ - $(srcdir)/dk/dk.h $(srcdir)/old/old.h $(srcdir)/prf/prf_int.h \ - $(srcdir)/raw/raw.h $(top_srcdir)/include/k5-buf.h \ + $(srcdir)/../builtin/des/des_int.h $(srcdir)/../builtin/enc_provider/enc_provider.h \ + $(srcdir)/../builtin/hash_provider/hash_provider.h \ + $(srcdir)/arcfour/arcfour.h $(srcdir)/dk/dk.h $(srcdir)/old/old.h \ + $(srcdir)/prf/prf_int.h $(srcdir)/raw/raw.h $(top_srcdir)/include/k5-buf.h \ $(top_srcdir)/include/k5-err.h $(top_srcdir)/include/k5-gmt_mktime.h \ $(top_srcdir)/include/k5-int-pkinit.h $(top_srcdir)/include/k5-int.h \ $(top_srcdir)/include/k5-platform.h $(top_srcdir)/include/k5-plugin.h \ |