Home | History | Annotate | only in /src/usr.bin/passwd
History log of /src/usr.bin/passwd
RevisionDateAuthorComments
 1.46 25-Feb-2018  mrg add LIBKRB5_LDADD/LIBKRB5_DPADD and their static counterparts
to bsd.prog.mk. use them instead of hard coding various lists
of libraries for krb5.

this fixes static builds.
 1.45 28-Jan-2017  christos add sqlite3
 1.44 13-Feb-2013  christos branches: 1.44.8; 1.44.10; 1.44.12; 1.44.16; 1.44.18;
Keep the built-in support for passwd -k, but don't make the kpasswd link or
install the kpasswd man page since these are provided by heimdal. I ifdef'ed
them so that the code to install them is still with the Makefile.
 1.43 11-Feb-2013  christos don't build kpasswd; heimdal does it for us.
 1.42 24-Apr-2011  elric branches: 1.42.4; 1.42.6; 1.42.10; 1.42.12; 1.42.14;
We no longer need -I/usr/include/krb5.
 1.41 28-May-2007  tls Add new Makefile knob, USE_FORT, which extends USE_SSP by turning on the
FORTIFY_SOURCE feature of libssp, thus checking the size of arguments to
various string and memory copy and set functions (as well as a few system
calls and other miscellany) where known at function entry. RedHat has
evidently built all "core system packages" with this option for some time.

This option should be used at the top of Makefiles (or Makefile.inc where
this is used for subdirectories) but after any setting of LIB.

This is only useful for userland code, and cannot be used in libc or in
any code which includes the libc internals, because it overrides certain
libc functions with macros. Some effort has been made to make USE_FORT=yes
work correctly for a full-system build by having the bsd.sys.mk logic
disable the feature where it should not be used (libc, libssp iteself,
the kernel) but no attempt has been made to build the entire system with
USE_FORT and doing so will doubtless expose numerous bugs and misfeatures.

Adjust the system build so that all programs and libraries that are setuid,
directly handle network data (including serial comm data), perform
authentication, or appear likely to have (or have a history of having)
data-driven bugs (e.g. file(1)) are built with USE_FORT=yes by default,
with the exception of libc, which cannot use USE_FORT and thus uses
only USE_SSP by default. Tested on i386 with no ill results; USE_FORT=no
per-directory or in a system build will disable if desired.
 1.40 04-Mar-2005  he Introduce PAM_STATIC_LDADD and PAM_STATIC_DPADD. When compiling
with MKPIC=no, possibly because the target does not support shared
libraries, these include libraries required to resolve all symbols
which end up referenced from PAM-using applications. The libraries
presently required are -lcrypt, -lrpcsvc and -lutil.

Add use of these variables which are currently set up to use PAM,
so that they compile when MKPIC=no.

Also, in the telnetd case, reorder the order of the libraries, so
that libtelnet.a comes before -ltermcap and -lutil, again to fix
link error when MKPIC=no.

Discussed with thorpej and christos.
 1.39 28-Feb-2005  wiz Remove COPTS+=-g.
 1.38 26-Feb-2005  thorpej Magor rework of passwd(1) for the PAM case. Add "-d <database>" option,
similar to Solaris's "-r <repository" or Mac OS X's "-i <infosystem>",
to select the password database (files, nis, krb5). Otherwise, we default
to using whatever PAM decides.
 1.37 22-Feb-2005  christos Add a PAM passwd module.
XXX: This avoids the issue of supporting separate -l -y -k, but is the behavior
correct? Should passwd -p disable all other passwd methods? Should it become
the default if compiled in?
 1.36 11-Jan-2005  christos use pw_gensalt() and don't dig into libcrypt.
 1.35 02-Jul-2004  sjg Add support for SHA1 hashed passwords.
The algorithm used is essentially PBKDF1 from RFC 2898 but using
hmac_sha1 rather than SHA1 directly (suggested by smb@research.att.com).

* The format of the encrypted password is:
* $<tag>$<iterations>$<salt>$<digest>
*
* where:
* <tag> is "sha1"
* <iterations> is an unsigned int identifying how many rounds
* have been applied to <digest>. The number
* should vary slightly for each password to make
* it harder to generate a dictionary of
* pre-computed hashes. See crypt_sha1_iterations.
* <salt> up to 64 bytes of random data, 8 bytes is
* currently considered more than enough.
* <digest> the hashed password.

hmac.c implementes HMAC as defined in RFC 2104 and includes a unit
test for both hmac_sha1 and hmac_sha1 using a selection of the Known
Answer Tests from RFC 2202.

It is worth noting that to be FIPS compliant the hmac key (password)
should be 10-20 chars.
 1.34 22-Jul-2003  lukem remove unnecessary rules
 1.33 06-Apr-2003  lha Don't build a separate kpasswd program, passwd can handle Kerberos
password changing. Fixes last part of bin/14988.
 1.32 23-Oct-2002  itojun add DPADD.
 1.31 22-Mar-2002  thorpej Split the notion of building Hesiod, Kerberos, S/key, and YP
infrastructure and using that infrastructure in programs.

* MKHESIOD, MKKERBEROS, MKSKEY, and MKYP control building
of the infratsructure (libraries, support programs, etc.)

* USE_HESIOD, USE_KERBEROS, USE_SKEY, and USE_YP control
building of support for using the corresponding API
in various libraries/programs that can use it.

As discussed on tech-toolchain.
 1.30 18-Oct-2000  simonb Remove INSTALLFLAGS=-fschg, as per change to usr.bin/ssh/ssh/Makefile.
 1.29 03-Aug-2000  assar remove -lvers, it's not used
 1.28 03-Aug-2000  assar update build infrastructure for heimdal 0.3a
 1.27 06-Jul-2000  ad Add pwd_gensalt() - generates password salt/setting for crypt(), based upon
target user and information obtained from passwd.conf. From OpenBSD.
 1.26 24-Jun-2000  veego Add a MKKERBEROS check to enable/disable kerberos support during the build.
 1.25 20-Jun-2000  thorpej branches: 1.25.2;
Merge a bunch of things from crypto-us and crypto-intl into basesrc,
adding support for Heimdal/KTH Kerberos where easy to do so. Eliminate
bsd.crypto.mk.

There is still a bunch more work to do, but crypto is now more-or-less
fully merged into the base NetBSD distribution.
 1.24 12-Jan-2000  mjl branches: 1.24.2;
Wrap login.conf database access in ifdef LOGIN_CAP.
 1.23 23-Dec-1999  mjl Fix yppasswd part of passwd. This has never worked since the
password map was split and master.passwd.byname was introduced.

XXX This is a temporary fix until luke finds some time to add
the necessary support glue to libc for TRT.
 1.22 20-Jul-1999  mrg optionally include CRYPTOPATH Makefile.frag files.
 1.21 12-Jul-1999  thorpej Use bsd.crypto.mk.
 1.20 18-Feb-1999  scottr Remove the crypto-related bits until such time as we have a fully-
integrated source tree. Export-controlled versions of these are now
built during the domestic build process.
 1.19 24-Oct-1997  lukem use CPPFLAGS instead of CFLAGS
 1.18 23-Jul-1997  mrg branches: 1.18.2;
find "namespace.h" ...
 1.17 08-May-1997  gwr Back out the .PATH.c changes. The .depend problem (and others)
will be fixed using the new .NOPATH make feature instead.
 1.16 06-May-1997  gwr Use .PATH.c: ...
 1.15 07-Jan-1997  tls remove vestigal Berkeley kpasswdd support
 1.14 28-Dec-1996  tls Sync with 4.4BSD-Lite2 (whew!)
 1.13 09-Aug-1996  thorpej Slight semantics change: ALWAYS use YP if the system is bound to a
YP server. This is required if the passwd database is to stay in sync
if this program is run on the YP server. Note, local passwd database
operations can still be performed by passing the -l flag.

Also, some minor cleanup and RCS id police.
 1.12 15-May-1996  jtc Updated to use new password file functions in libutil.
From Greg Hudson <ghudson@MIT.EDU>.
 1.11 31-Mar-1995  hpeyerl Fix minor -Ibooboo
 1.10 12-Feb-1995  phil Make passwd work with a link to yppasswd. (From Jason Thorpe)
 1.9 07-Jan-1995  mycroft Patch from Giles Lean to make compilation flags more consistent.
 1.8 17-Oct-1994  brezak Fix krb4 build. From Michael Graff <explorer@vorpal.com>
 1.7 27-Jul-1994  brezak branches: 1.7.2;
Add conditional kerberosIV and kerberos5 support
 1.6 07-Oct-1993  cgd always use libcrypt
 1.5 31-Jul-1993  mycroft Add RCS identifiers.
 1.4 11-Jun-1993  brezak Add YP support.
 1.3 26-Apr-1993  cgd changed to use new libcrypt scheme.
 1.2 22-Mar-1993  cgd added support for using real crypt
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.2 27-Dec-1996  tls Import of 4.4BSD-Lite2 sources
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.7.2.2 17-Oct-1994  cgd patch for kerberos support, from trunk. no need to recompile.
 1.7.2.1 27-Jul-1994  cgd file Makefile was added on branch netbsd-1-0 on 1994-10-17 20:12:11 +0000
 1.18.2.1 08-Nov-1997  lukem sync with trunk (approved by thorpej)
 1.24.2.1 23-Jun-2000  minoura Sync w/ netbsd-1-5-base.
 1.25.2.4 26-Feb-2002  he Pull up revision 1.27 (requested by jonathan):
Add support for local MD5-encrypted passwords.
 1.25.2.3 18-Oct-2000  tv Pull up 1.30 [simonb]:
Remove INSTALLFLAGS=-fschg.
 1.25.2.2 27-Jun-2000  thorpej Pull up rev. 1.26:
Add a MKKERBEROS check to enable/disable kerberos support during the build.
 1.25.2.1 20-Jun-2000  thorpej file Makefile was added on branch netbsd-1-5 on 2000-06-27 21:49:27 +0000
 1.42.14.1 30-Aug-2017  snj Pull up following revision(s) (requested by mrg in ticket #1493):
crypto/external/bsd/heimdal/Makefile.inc: up to 1.3
crypto/external/bsd/heimdal/Makefile.rules.inc: up to 1.8
crypto/external/bsd/heimdal/bin/Makefile: up to 1.2
crypto/external/bsd/heimdal/bin/Makefile.inc: up to 1.3
crypto/external/bsd/heimdal/bin/kcc/Makefile: up to 1.3
crypto/external/bsd/heimdal/bin/krb5-config/Makefile: up to 1.3
crypto/external/bsd/heimdal/bin/kvno/Makefile: up to 1.1
crypto/external/bsd/heimdal/bin/kvno/kvno.1: up to 1.1
crypto/external/bsd/heimdal/dist/LICENSE: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/NEWS: up to 1.2
crypto/external/bsd/heimdal/dist/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/README.fast: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/admin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/admin/add.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/change.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/get.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/ktutil-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/admin/ktutil.1: up to 1.2
crypto/external/bsd/heimdal/dist/admin/ktutil.8 delete
crypto/external/bsd/heimdal/dist/admin/ktutil.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/list.c: up to 1.2
crypto/external/bsd/heimdal/dist/appveyor.yml: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/autogen.sh: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/base/Makefile.am delete
crypto/external/bsd/heimdal/dist/base/NTMakefile delete
crypto/external/bsd/heimdal/dist/base/array.c delete
crypto/external/bsd/heimdal/dist/base/baselocl.h delete
crypto/external/bsd/heimdal/dist/base/bool.c delete
crypto/external/bsd/heimdal/dist/base/dict.c delete
crypto/external/bsd/heimdal/dist/base/heimbase.c delete
crypto/external/bsd/heimdal/dist/base/heimbase.h delete
crypto/external/bsd/heimdal/dist/base/heimbasepriv.h delete
crypto/external/bsd/heimdal/dist/base/heimqueue.h delete
crypto/external/bsd/heimdal/dist/base/json.c delete
crypto/external/bsd/heimdal/dist/base/null.c delete
crypto/external/bsd/heimdal/dist/base/number.c delete
crypto/external/bsd/heimdal/dist/base/roken_rename.h delete
crypto/external/bsd/heimdal/dist/base/string.c delete
crypto/external/bsd/heimdal/dist/base/test_base.c delete
crypto/external/bsd/heimdal/dist/base/version-script.map delete
crypto/external/bsd/heimdal/dist/cf/Makefile.am.common: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/check-compile-et.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/check-getpwnam_r-posix.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/check-man.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/check-x.m4 delete
crypto/external/bsd/heimdal/dist/cf/check-xau.m4 delete
crypto/external/bsd/heimdal/dist/cf/crypto.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/db.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/dispatch.m4: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/dlopen.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/find-func-no-libs2.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/install-catman.sh: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/krb-ipv6.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/krb-prog-perl.m4: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/cf/make-proto.pl: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/maybe-valgrind.sh: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/misc.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/proto-compat.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/pthreads.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/retsigtype.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/roken-frag.m4: up to 1.2
crypto/external/bsd/heimdal/dist/cf/roken-h-process.pl: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/sunos.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/test-package.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/valgrind-suppressions: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/version-script.m4: up to 1.2
crypto/external/bsd/heimdal/dist/cf/wflags.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/with-all.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/configure.ac: up to 1.2
crypto/external/bsd/heimdal/dist/doc/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/doc/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/doc/ack.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/base.din: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/doc/base.hhp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/doc/copyright.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/doxytmpl.dxy: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/doc/heimdal.hhp: up to 1.2
crypto/external/bsd/heimdal/dist/doc/heimdal.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/hx509.hhp: up to 1.2
crypto/external/bsd/heimdal/dist/doc/hx509.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/intro.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/kerberos4.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/migration.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/oid.txt delete
crypto/external/bsd/heimdal/dist/doc/setup.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/vars.tin: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/doc/whatis.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/win2k.texi: up to 1.2
crypto/external/bsd/heimdal/dist/etc/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/include/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/bits.c: up to 1.2
crypto/external/bsd/heimdal/dist/include/config.h.w32: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/include/crypto-headers.h: up to 1.2
crypto/external/bsd/heimdal/dist/include/gssapi/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/hcrypto/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/include/heim_threads.h: up to 1.2
crypto/external/bsd/heimdal/dist/include/kadm5/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/krb5-types.cross: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kadmin/add-random-users.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/add_enctype.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/ank.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/check.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/cpw.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/del_enctype.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/dump.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/get.c: up to 1.4
crypto/external/bsd/heimdal/dist/kadmin/init.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadm_conn.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/kadmin/kadmin.1: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin.8 delete
crypto/external/bsd/heimdal/dist/kadmin/kadmin.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmind.8: up to 1.5
crypto/external/bsd/heimdal/dist/kadmin/kadmind.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/load.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/mod.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/rpc.c: up to 1.3
crypto/external/bsd/heimdal/dist/kadmin/server.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/stash.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/util.c: up to 1.4
crypto/external/bsd/heimdal/dist/kcm/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kcm/acquire.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/cache.c: up to 1.3
crypto/external/bsd/heimdal/dist/kcm/client.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/connect.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/events.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/kcm.8: up to 1.5
crypto/external/bsd/heimdal/dist/kcm/kcm_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/main.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/protocol.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/renew.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/sessions.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kdc/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kdc/announce.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/connect.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/default_config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/digest-service.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/digest.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/fast.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/headers.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hprop.8: up to 1.5
crypto/external/bsd/heimdal/dist/kdc/hprop.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hprop.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hpropd.8: up to 1.4
crypto/external/bsd/heimdal/dist/kdc/hpropd.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc-replay.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc-tester.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc.8: up to 1.5
crypto/external/bsd/heimdal/dist/kdc/kdc.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kerberos5.c: up to 1.7
crypto/external/bsd/heimdal/dist/kdc/krb5tgs.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kstash.8: up to 1.4
crypto/external/bsd/heimdal/dist/kdc/kstash.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kx509.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/main.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/misc.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/mit_dump.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/pkinit-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/pkinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/process.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/set_dbinfo.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/string2key.8: up to 1.4
crypto/external/bsd/heimdal/dist/kdc/string2key.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/windc.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/windc_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd-generator.c: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd.1: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd.c: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswdd.8: up to 1.4
crypto/external/bsd/heimdal/dist/kpasswd/kpasswdd.c: up to 1.4
crypto/external/bsd/heimdal/dist/krb5.conf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kuser/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kuser/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kuser/copy_cred_cache.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/copy_cred_cache.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/generate-requests.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/heimtools-commands.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/kuser/heimtools-version.rc: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/kuser/heimtools.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kcc-commands.in delete
crypto/external/bsd/heimdal/dist/kuser/kcc-version.rc delete
crypto/external/bsd/heimdal/dist/kuser/kcc.c delete
crypto/external/bsd/heimdal/dist/kuser/kcpytkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdecode_ticket.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdeltkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdestroy.1: up to 1.5
crypto/external/bsd/heimdal/dist/kuser/kdestroy.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdigest.8: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdigest.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kgetcred.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kgetcred.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kimpersonate.8: up to 1.5
crypto/external/bsd/heimdal/dist/kuser/kimpersonate.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kinit.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/klist.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/klist.c: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kswitch.1: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kswitch.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kuser_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kverify.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kvno.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/45/NTMakefile delete
crypto/external/bsd/heimdal/dist/lib/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1-template.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1_gen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1_print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1parse.y: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-der.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-gen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_cmp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_format.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_get.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_length.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_put.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/digest.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/extra.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/fuzzer.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/asn1/gen_decode.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_encode.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_length.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_locl.h: up to 1.3
crypto/external/bsd/heimdal/dist/lib/asn1/gen_seq.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/krb5.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/lex.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/lex.l: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/libasn1-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/asn1/main.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/asn1/pkinit.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/pku2u.asn1: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/asn1/rfc2459.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/roken_rename.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/symbol.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/symbol.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/test.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/test.opt: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/asn1/timegm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/Makefile.am: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/base/NTMakefile: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/base/array.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/baselocl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/bool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/bsearch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/data.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/db.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/dict.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/dll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbase.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbase.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbasepriv.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimqueue.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/json.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/number.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/roken_rename.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/string.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/test_base.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/version-script.map: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/com_err/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/com_err/com_err.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/com_err/com_err.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/com_err.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/com_right.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/compile_et.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/com_err/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/lex.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/parse.y: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gen-oid.pl: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gss-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gss_acquire_cred.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi.3: up to 1.5
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi/gssapi.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi/gssapi_krb5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi/gssapi_oid.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi_mech.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gsstool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/8003.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/aeap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/authorize_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/cfx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/compat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/copy_ccache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/decapsulate.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/encapsulate.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/export_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/get_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/gsskrb5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/import_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/import_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/init_sec_context.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_names_for_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/pname_to_uid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/prf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/sequence.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/set_cred_option.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/set_sec_context_option.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_cfx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_kcred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/unwrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/verify_mic.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/libgssapi-exports.def: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/compat.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/cred.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred_ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred_with_password.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_add_cred_with_password.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_add_oid_set_member.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_aeap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_authorize_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_buffer_set.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_decapsulate_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_delete_name_attribute.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_delete_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_destroy_cred.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_name_ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_status.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_encapsulate_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_export_name_composite.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_export_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_get_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_get_name_attribute.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_import_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_import_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_indicate_mechs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_krb5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_mech_switch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_mo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_names.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_oid_equal.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_pname_to_uid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_release_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_set_cred_option.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_set_name_attribute.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_test_oid_set_member.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_unwrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_verify_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_wrap_size_limit.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gssapi.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/mech.5: up to 1.5
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/mech_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/accept_sec_context.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/acquire_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/add_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/canonicalize_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/compare_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/display_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/duplicate_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/export_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/init_sec_context.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_cred_by_mech.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_mechs_for_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/creds.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/import_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/iter_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/kdc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/oid.txt: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/compat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/context_stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/cred_stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/spnego_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_add_store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_kcred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_ntlm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/version-script.map: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/aes.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/bn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/bn.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/camellia-ntt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/camellia.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/des.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/destest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh-ltm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh-tfm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dllmain.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/dsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dsa.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ec.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ecdsa.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/engine.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/engine.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-cc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-cc.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-crypt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-hcrypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-openssl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-openssl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-pkcs11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-pkcs11.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-w32.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-wincng.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-wincng.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/example_evp_cipher.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/hash.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/hmac.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libhcrypto-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_mp_invmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_mp_montgomery_reduce.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_s_mp_mul_digs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_s_mp_mul_high_digs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_s_mp_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_2expt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_abs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_add.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_add_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_addmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_and.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_clamp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_clear.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_clear_multi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_cmp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_cmp_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_cmp_mag.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_cnt_lsb.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_count_bits.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div_2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div_2d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div_3.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_dr_is_modulus.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_dr_reduce.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_dr_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_exch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_expt_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_exptmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_exptmod_fast.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_exteuclid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_find_prime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_fread.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_fwrite.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_gcd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_get_int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_grow.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_multi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_set.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_set_int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_size.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_invmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_invmod_slow.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_is_square.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_isprime.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_jacobi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_karatsuba_mul.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_karatsuba_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_lcm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_lshd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mod_2d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mod_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_montgomery_calc_normalization.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_montgomery_reduce.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_montgomery_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mul.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mul_2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mul_2d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mul_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mulmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_n_root.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_neg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_or.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_fermat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_is_divisible.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_is_prime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_miller_rabin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_next_prime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_rabin_miller_trials.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_random_ex.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_radix_size.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_radix_smap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_read_radix.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_read_signed_bin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_read_unsigned_bin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_2k.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_2k_l.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_2k_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_2k_setup_l.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_is_2k.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_is_2k_l.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_rshd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_set.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_set_int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_shrink.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_signed_bin_size.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sqrmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sqrt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sub.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sub_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_submod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_to_signed_bin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_to_signed_bin_n.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_to_unsigned_bin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_to_unsigned_bin_n.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_toom_mul.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_toom_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_toradix.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_toradix_n.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_unsigned_bin_size.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_xor.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_zero.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_zero_multi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_prime_tab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_reverse.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_add.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_exptmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_mul_digs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_mul_high_digs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_sub.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bncore.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/demo/demo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/demo/timing.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/2kprime.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/drprime.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/mersenne.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/mont.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/pprime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/timer.asm: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/tune.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/gen.pl: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/logs/README: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/logs/index.html: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/makefile.cygwin_dll: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/logtab.h: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mpi-config.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mpi-types.h: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mpi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mpi.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mtest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/pics/makefile: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/pretty.build: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/tommath.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/tommath_class.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/tommath_superclass.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md2.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/hcrypto/md2.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md4.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md4.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5crypt_test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/mdtest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/passwd_dlg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/pkcs12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/pkcs5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-egd.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-fortuna.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-timer.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-unix.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/randi.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc2test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc4.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rctest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rijndael-alg-fst.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rnd_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-gmp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-ltm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-tfm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha256.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha512.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_bn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_bulk.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_cipher.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_crypto.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_dh.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_engine_dso.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_hmac.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_pkcs12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_pkcs5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_rsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ui.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/undef.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/validate.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hdb/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/db.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/db3.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/dbinfo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-ldap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-mdb.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-mitdb.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-sqlite.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.schema: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/keys.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hdb/keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/libhdb-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hdb/mkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_dbinfo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_hdbkeys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_hdbplugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_mkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/heimdal/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/heimdal/dllmain.c delete
crypto/external/bsd/heimdal/dist/lib/hx509/ChangeLog: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ca.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/cert.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hx509/char_map.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/cms.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/collector.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/crypto-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/data/mkcert.sh: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/openssl.cnf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/env.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hx509.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hx509_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/hx_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hxtool-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/hxtool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/keyset.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_dir.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_keychain.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_mem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_p11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_p12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/libhx509-exports.def: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/lock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ref/pkcs11.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/revoke.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hx509/sel-lex.l: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/sel.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/sel.h: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hx509/softp11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/test_ca.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_cert.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_chain.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_cms.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_expr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/test_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/test_nist.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_nist2.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_nist_pkcs12.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_soft_pkcs11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ipc/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ipc/client.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/heim-ipc.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/server.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/tc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/ts-http.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/ts.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/kadm5/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/acl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ad.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/kadm5/admin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/chpass_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/chpass_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/common_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/context_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/create_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/create_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/default_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/delete_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/destroy_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/destroy_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ent_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_princs_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/init_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/init_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-log.8: up to 1.6
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop.8: up to 1.5
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_master.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_slave.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/kadm5_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kadm5/kadm5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/libkadm5srv-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/marshall.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/modify_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/password_quality.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/private.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/randkey_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/randkey_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/rename_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/send_recv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/set_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/setkey3_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/test_pw_quality.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/version-script-client.map: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/kadm5/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kafs/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/kafs/afskrb5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/afssys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/kafs.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/kafs.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/kafs_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/rxkad_kdf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kdfs/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kdfs/k5dfspag.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/krb5/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/acache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/acl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/addr_families.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/aes-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/an2ln_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/aname_to_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/appdefault.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/asn1_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/auth_context.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/build_auth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/cache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/changepw.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/codec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/config_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/config_reg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/constants.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/context.c: up to 1.6
crypto/external/bsd/heimdal/dist/lib/krb5/convert_creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/copy_host_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes-sha1.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes-sha2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes.c delete
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-algs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des-common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des3.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-evp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-pk.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/data.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/db_plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/db_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/dcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/deprecated.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/derived-key-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/digest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/dll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/eai_to_heim_errno.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/enomem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/error_string.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/expand_hostname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/expand_path.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/fast.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/fcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/generate_subkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_addrs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_principal.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_for_creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_host_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_in_tkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/heim_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/init_creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/init_creds_pw.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kcm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kerberos.8: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keyblock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_any.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_keyfile.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_memory.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5-plugin.7: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5.conf.5: up to 1.6
crypto/external/bsd/heimdal/dist/lib/krb5/krb5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_auth_context.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_c_make_checksum.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_check_transited.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_create_checksum.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_creds.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_digest.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_encrypt.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_get_creds.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_get_init_creds.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_init_context.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_mk_req.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_parse_name.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_principal.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_set_default_realm.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_timeofday.3: up to 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/krbhst.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/libkrb5-exports.def.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/locate_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/misc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mit_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_priv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_rep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_req_ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_safe.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/n-fold-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/n-fold.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/net_read.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/net_write.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pac.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/padata.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pkinit-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pkinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/principal.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pseudo-random-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_priv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_rep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_req.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_safe.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/recvauth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/replay.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes-sha1.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes-sha2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes.c delete
crypto/external/bsd/heimdal/dist/lib/krb5/salt-arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-des3.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/scache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c: up to 1.7
crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/sendauth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/set_default_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/sp800-108-kdf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store-int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store-int.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_emem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_fd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_mem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_sock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/string-to-key-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_acl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_alname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_ap-req.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_canon.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_cc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_config.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_crypto_wrapping.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_expand_toks.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_fx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_gic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_kuserok.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_pac.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_pknistkdf.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/test_plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_rfc3961.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_set_kvno0.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_store.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_x500.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/ticket.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/transited.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_init.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_krb5_conf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_user.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/version-script.map: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/warn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/ntlm/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/apop.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/digest.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/heim-auth.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/heimntlm.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/ntlm.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/ntlm_err.et: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/test_commonauth.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/test_ntlm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/otp/otp_md.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otptest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ChangeLog: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/roken/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/bswap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/cloexec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/concat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ct.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/daemon.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/detach.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dirent-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dirent.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dlfcn.hin: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/roken/dlfcn_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dumpdata.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ecalloc.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/err.hin: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/fnmatch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/get_window_size.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/roken/getaddrinfo_hostspec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getarg.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getarg.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/roken/getcap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getifaddrs-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getifaddrs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getifaddrs_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getxxyyy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/glob.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/hex-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/hex.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/issuid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/memset_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/mkdir.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ndbm_wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_bytes-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_time-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_time.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_units.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/qsort.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/realloc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rename.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/resolve-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/resolve.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/roken/rkpty.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/roken-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/roken.awk: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/roken/roken.h.in: up to 1.4
crypto/external/bsd/heimdal/dist/lib/roken/roken_gethostby.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rtbl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rtbl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/search.hin: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/roken/sendmsg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/simple_exec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/simple_exec_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/sleep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/snprintf-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/snprintf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/socket.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/socket_wrapper.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/sockstartup_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/stdint.hin: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/roken/strftime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/strsep_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/strtoll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/strtoull.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/syslogc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/test-detach.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/test-mem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/test-mini_inetd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/tsearch-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/tsearch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/unvis.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/roken/win32_alloc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/write_pid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/sl/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/sl/sl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/sl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/slc-gram.y: up to 1.2
crypto/external/bsd/heimdal/dist/lib/vers/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/vers/print_version.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/wind/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/wind/bidi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/combining.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/errorlist.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/gen-bidi.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-combining.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-errorlist.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-normalize.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/ldap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/libwind-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/wind/map.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/normalize.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/stringprep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-bidi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-ldap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-normalize.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-prohibited.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-utf8.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/utf8.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/packages/mac/Resources/English.lproj/Welcome.rtf: up to 1.2
crypto/external/bsd/heimdal/dist/packages/mac/mac.sh: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/packages/windows/NTMakefile: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/assembly/Heimdal.Kerberos.manifest.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/packages/windows/assembly/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/assembly/policy.Heimdal.Kerberos.in: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-assemblies.wxs: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-command.wxs: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-gss.wxs: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-installer.wxs: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-policy.wxs: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_banner.bmp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_banner.png: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_dialog.bmp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_dialog.png: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/lang/en-us.wxl: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/packages/windows/sdk/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/po/heimdal_krb5/heimdal_krb5.pot: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/po/heimdal_krb5/sv_SE.po: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/bin/Makefile.am: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/bin/intr.c: up to 1.2
crypto/external/bsd/heimdal/dist/tests/bin/setup-env.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/can/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/check-can.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/mit-pkinit-20070607.xf: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/test_can.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/db/add-modify-delete.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/check-aliases.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/check-dbinfo.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/have-db.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/db/krb5-mit.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/krb5.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/loaddump-db.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/gss/check-basic.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-context.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-gssmask.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-ntlm.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-spnego.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/gss/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/java/check-kinit.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/jaas.conf: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/an2ln-db.txt: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-authz.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-canon.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-cc.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-delegation.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-des.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-digest.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-fast.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-hdb-mitdb.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-iprop.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-kadmin.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-kdc.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-kinit.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-kpasswdd.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-pkinit.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-referral.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-tester.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-uu.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb.kadm5: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb.mkey: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/heimdal.acl: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/k5login/foo: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester1.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester2.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester3.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester4.json.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-authz.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-authz2.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-canon.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-canon2.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-hdb-mitdb.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-pkinit.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/krb5.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/krb5.conf.keys.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/leaks-kill.sh: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/wait-kdc.sh: up to 1.2
crypto/external/bsd/heimdal/dist/tests/ldap/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/ldap/check-ldap.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/slapd-init.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/slapd.conf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/plugin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/plugin/check-pac.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/plugin/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/plugin/windc.c: up to 1.2
crypto/external/bsd/heimdal/dist/tools/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tools/heimdal-gssapi.pc.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tools/heimdal-kadm-client.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/heimdal-kadm-server.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/heimdal-krb5.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kadm-client.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kadm-server.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kafs.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/krb5-config.1: up to 1.2
crypto/external/bsd/heimdal/dist/tools/krb5-config.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tools/krb5-gssapi.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/krb5.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/windows/NTMakefile.config: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/windows/NTMakefile.version: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/windows/NTMakefile.w32: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/windows/README delete
crypto/external/bsd/heimdal/dist/windows/README.md: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/windows/maint.el delete
crypto/external/bsd/heimdal/dist/windows/version.rc: up to 1.1.1.2
crypto/external/bsd/heimdal/heimdal2netbsd: up to 1.8
crypto/external/bsd/heimdal/include/config.h: up to 1.8 via patch
crypto/external/bsd/heimdal/include/der-private.h: up to 1.2
crypto/external/bsd/heimdal/include/der-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/gsskrb5-private.h: up to 1.3
crypto/external/bsd/heimdal/include/hdb-private.h: up to 1.2
crypto/external/bsd/heimdal/include/hdb-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/heimntlm-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/hx509-private.h: up to 1.3
crypto/external/bsd/heimdal/include/hx509-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kadm5-private.h: up to 1.2
crypto/external/bsd/heimdal/include/kadm5-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kcm-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kdc-private.h: up to 1.3
crypto/external/bsd/heimdal/include/kdc-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/krb5-private.h: up to 1.3
crypto/external/bsd/heimdal/include/krb5-protos.h: up to 1.4
crypto/external/bsd/heimdal/include/krb5-types.h: up to 1.7
crypto/external/bsd/heimdal/include/ntlm-private.h: up to 1.3
crypto/external/bsd/heimdal/include/roken.h: up to 1.7
crypto/external/bsd/heimdal/include/spnego-private.h: up to 1.2
crypto/external/bsd/heimdal/include/version.h: up to 1.3
crypto/external/bsd/heimdal/lib/libasn1/Makefile: up to 1.5
crypto/external/bsd/heimdal/lib/libasn1/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libcom_err/compile_et/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libcom_err/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libgssapi/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libgssapi/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libhdb/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libhdb/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libheimbase/Makefile: up to 1.2
crypto/external/bsd/heimdal/lib/libheimbase/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libheimntlm/Makefile: up to 1.2
crypto/external/bsd/heimdal/lib/libheimntlm/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libhx509/Makefile: up to 1.5
crypto/external/bsd/heimdal/lib/libhx509/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkadm5clnt/Makefile: up to 1.3
crypto/external/bsd/heimdal/lib/libkadm5clnt/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkadm5srv/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libkadm5srv/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkafs/Makefile: up to 1.3
crypto/external/bsd/heimdal/lib/libkafs/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkdc/Makefile: up to 1.3
crypto/external/bsd/heimdal/lib/libkdc/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkrb5/Makefile: up to 1.11
crypto/external/bsd/heimdal/lib/libkrb5/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libroken/Makefile: up to 1.2
crypto/external/bsd/heimdal/lib/libroken/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libsl/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libsl/slc/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libwind/shlib_version: up to 1.2
crypto/external/bsd/heimdal/libexec/Makefile.inc: up to 1.5
crypto/external/bsd/heimdal/sbin/Makefile.inc: up to 1.4
crypto/external/bsd/heimdal/sbin/kadmin/Makefile: up to 1.3
crypto/external/bsd/heimdal/sbin/kdigest/Makefile: up to 1.3
crypto/external/bsd/heimdal/sbin/ktutil/Makefile: up to 1.3
distrib/sets/lists/base/ad.mips64eb: patch
distrib/sets/lists/base/ad.mips64el: patch
distrib/sets/lists/base/md.amd64: patch
distrib/sets/lists/base/md.sparc64: patch
distrib/sets/lists/base/mi: patch
distrib/sets/lists/base/shl.mi: patch
distrib/sets/lists/comp/ad.mips64eb: patch
distrib/sets/lists/comp/ad.mips64el patch
distrib/sets/lists/comp/md.amd64: patch
distrib/sets/lists/comp/md.sparc64: patch
distrib/sets/lists/comp/mi: patch
distrib/sets/lists/comp/shl.mi: patch
distrib/sets/lists/man/mi: patch
external/bsd/bind/Makefile.inc: 1.25 via patch
external/gpl2/xcvs/bin/xcvs/Makefile: 1.5
libexec/telnetd/Makefile: 1.50
share/mk/bsd.prog.mk: 1.301
usr.bin/passwd/Makefile: 1.45 via patch
usr.bin/telnet/Makefile: 1.51
usr.sbin/racoon/Makefile: 1.28
Update Heimdal to 7.1.
 1.42.12.1 30-Aug-2017  snj Pull up following revision(s) (requested by mrg in ticket #1493):
crypto/external/bsd/heimdal/Makefile.inc: up to 1.3
crypto/external/bsd/heimdal/Makefile.rules.inc: up to 1.8
crypto/external/bsd/heimdal/bin/Makefile: up to 1.2
crypto/external/bsd/heimdal/bin/Makefile.inc: up to 1.3
crypto/external/bsd/heimdal/bin/kcc/Makefile: up to 1.3
crypto/external/bsd/heimdal/bin/krb5-config/Makefile: up to 1.3
crypto/external/bsd/heimdal/bin/kvno/Makefile: up to 1.1
crypto/external/bsd/heimdal/bin/kvno/kvno.1: up to 1.1
crypto/external/bsd/heimdal/dist/LICENSE: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/NEWS: up to 1.2
crypto/external/bsd/heimdal/dist/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/README.fast: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/admin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/admin/add.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/change.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/get.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/ktutil-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/admin/ktutil.1: up to 1.2
crypto/external/bsd/heimdal/dist/admin/ktutil.8 delete
crypto/external/bsd/heimdal/dist/admin/ktutil.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/list.c: up to 1.2
crypto/external/bsd/heimdal/dist/appveyor.yml: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/autogen.sh: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/base/Makefile.am delete
crypto/external/bsd/heimdal/dist/base/NTMakefile delete
crypto/external/bsd/heimdal/dist/base/array.c delete
crypto/external/bsd/heimdal/dist/base/baselocl.h delete
crypto/external/bsd/heimdal/dist/base/bool.c delete
crypto/external/bsd/heimdal/dist/base/dict.c delete
crypto/external/bsd/heimdal/dist/base/heimbase.c delete
crypto/external/bsd/heimdal/dist/base/heimbase.h delete
crypto/external/bsd/heimdal/dist/base/heimbasepriv.h delete
crypto/external/bsd/heimdal/dist/base/heimqueue.h delete
crypto/external/bsd/heimdal/dist/base/json.c delete
crypto/external/bsd/heimdal/dist/base/null.c delete
crypto/external/bsd/heimdal/dist/base/number.c delete
crypto/external/bsd/heimdal/dist/base/roken_rename.h delete
crypto/external/bsd/heimdal/dist/base/string.c delete
crypto/external/bsd/heimdal/dist/base/test_base.c delete
crypto/external/bsd/heimdal/dist/base/version-script.map delete
crypto/external/bsd/heimdal/dist/cf/Makefile.am.common: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/check-compile-et.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/check-getpwnam_r-posix.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/check-man.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/check-x.m4 delete
crypto/external/bsd/heimdal/dist/cf/check-xau.m4 delete
crypto/external/bsd/heimdal/dist/cf/crypto.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/db.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/dispatch.m4: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/dlopen.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/find-func-no-libs2.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/install-catman.sh: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/krb-ipv6.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/krb-prog-perl.m4: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/cf/make-proto.pl: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/maybe-valgrind.sh: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/misc.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/proto-compat.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/pthreads.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/retsigtype.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/roken-frag.m4: up to 1.2
crypto/external/bsd/heimdal/dist/cf/roken-h-process.pl: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/sunos.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/test-package.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/valgrind-suppressions: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/version-script.m4: up to 1.2
crypto/external/bsd/heimdal/dist/cf/wflags.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/with-all.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/configure.ac: up to 1.2
crypto/external/bsd/heimdal/dist/doc/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/doc/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/doc/ack.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/base.din: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/doc/base.hhp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/doc/copyright.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/doxytmpl.dxy: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/doc/heimdal.hhp: up to 1.2
crypto/external/bsd/heimdal/dist/doc/heimdal.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/hx509.hhp: up to 1.2
crypto/external/bsd/heimdal/dist/doc/hx509.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/intro.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/kerberos4.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/migration.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/oid.txt delete
crypto/external/bsd/heimdal/dist/doc/setup.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/vars.tin: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/doc/whatis.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/win2k.texi: up to 1.2
crypto/external/bsd/heimdal/dist/etc/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/include/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/bits.c: up to 1.2
crypto/external/bsd/heimdal/dist/include/config.h.w32: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/include/crypto-headers.h: up to 1.2
crypto/external/bsd/heimdal/dist/include/gssapi/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/hcrypto/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/include/heim_threads.h: up to 1.2
crypto/external/bsd/heimdal/dist/include/kadm5/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/krb5-types.cross: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kadmin/add-random-users.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/add_enctype.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/ank.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/check.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/cpw.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/del_enctype.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/dump.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/get.c: up to 1.4
crypto/external/bsd/heimdal/dist/kadmin/init.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadm_conn.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/kadmin/kadmin.1: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin.8 delete
crypto/external/bsd/heimdal/dist/kadmin/kadmin.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmind.8: up to 1.5
crypto/external/bsd/heimdal/dist/kadmin/kadmind.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/load.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/mod.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/rpc.c: up to 1.3
crypto/external/bsd/heimdal/dist/kadmin/server.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/stash.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/util.c: up to 1.4
crypto/external/bsd/heimdal/dist/kcm/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kcm/acquire.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/cache.c: up to 1.3
crypto/external/bsd/heimdal/dist/kcm/client.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/connect.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/events.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/kcm.8: up to 1.5
crypto/external/bsd/heimdal/dist/kcm/kcm_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/main.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/protocol.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/renew.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/sessions.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kdc/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kdc/announce.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/connect.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/default_config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/digest-service.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/digest.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/fast.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/headers.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hprop.8: up to 1.5
crypto/external/bsd/heimdal/dist/kdc/hprop.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hprop.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hpropd.8: up to 1.4
crypto/external/bsd/heimdal/dist/kdc/hpropd.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc-replay.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc-tester.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc.8: up to 1.5
crypto/external/bsd/heimdal/dist/kdc/kdc.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kerberos5.c: up to 1.7
crypto/external/bsd/heimdal/dist/kdc/krb5tgs.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kstash.8: up to 1.4
crypto/external/bsd/heimdal/dist/kdc/kstash.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kx509.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/main.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/misc.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/mit_dump.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/pkinit-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/pkinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/process.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/set_dbinfo.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/string2key.8: up to 1.4
crypto/external/bsd/heimdal/dist/kdc/string2key.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/windc.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/windc_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd-generator.c: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd.1: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd.c: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswdd.8: up to 1.4
crypto/external/bsd/heimdal/dist/kpasswd/kpasswdd.c: up to 1.4
crypto/external/bsd/heimdal/dist/krb5.conf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kuser/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kuser/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kuser/copy_cred_cache.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/copy_cred_cache.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/generate-requests.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/heimtools-commands.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/kuser/heimtools-version.rc: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/kuser/heimtools.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kcc-commands.in delete
crypto/external/bsd/heimdal/dist/kuser/kcc-version.rc delete
crypto/external/bsd/heimdal/dist/kuser/kcc.c delete
crypto/external/bsd/heimdal/dist/kuser/kcpytkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdecode_ticket.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdeltkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdestroy.1: up to 1.5
crypto/external/bsd/heimdal/dist/kuser/kdestroy.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdigest.8: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdigest.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kgetcred.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kgetcred.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kimpersonate.8: up to 1.5
crypto/external/bsd/heimdal/dist/kuser/kimpersonate.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kinit.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/klist.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/klist.c: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kswitch.1: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kswitch.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kuser_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kverify.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kvno.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/45/NTMakefile delete
crypto/external/bsd/heimdal/dist/lib/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1-template.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1_gen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1_print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1parse.y: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-der.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-gen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_cmp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_format.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_get.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_length.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_put.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/digest.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/extra.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/fuzzer.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/asn1/gen_decode.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_encode.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_length.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_locl.h: up to 1.3
crypto/external/bsd/heimdal/dist/lib/asn1/gen_seq.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/krb5.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/lex.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/lex.l: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/libasn1-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/asn1/main.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/asn1/pkinit.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/pku2u.asn1: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/asn1/rfc2459.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/roken_rename.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/symbol.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/symbol.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/test.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/test.opt: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/asn1/timegm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/Makefile.am: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/base/NTMakefile: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/base/array.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/baselocl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/bool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/bsearch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/data.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/db.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/dict.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/dll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbase.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbase.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbasepriv.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimqueue.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/json.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/number.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/roken_rename.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/string.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/test_base.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/version-script.map: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/com_err/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/com_err/com_err.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/com_err/com_err.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/com_err.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/com_right.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/compile_et.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/com_err/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/lex.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/parse.y: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gen-oid.pl: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gss-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gss_acquire_cred.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi.3: up to 1.5
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi/gssapi.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi/gssapi_krb5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi/gssapi_oid.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi_mech.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gsstool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/8003.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/aeap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/authorize_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/cfx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/compat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/copy_ccache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/decapsulate.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/encapsulate.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/export_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/get_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/gsskrb5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/import_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/import_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/init_sec_context.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_names_for_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/pname_to_uid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/prf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/sequence.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/set_cred_option.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/set_sec_context_option.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_cfx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_kcred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/unwrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/verify_mic.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/libgssapi-exports.def: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/compat.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/cred.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred_ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred_with_password.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_add_cred_with_password.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_add_oid_set_member.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_aeap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_authorize_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_buffer_set.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_decapsulate_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_delete_name_attribute.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_delete_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_destroy_cred.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_name_ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_status.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_encapsulate_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_export_name_composite.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_export_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_get_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_get_name_attribute.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_import_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_import_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_indicate_mechs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_krb5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_mech_switch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_mo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_names.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_oid_equal.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_pname_to_uid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_release_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_set_cred_option.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_set_name_attribute.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_test_oid_set_member.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_unwrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_verify_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_wrap_size_limit.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gssapi.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/mech.5: up to 1.5
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/mech_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/accept_sec_context.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/acquire_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/add_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/canonicalize_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/compare_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/display_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/duplicate_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/export_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/init_sec_context.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_cred_by_mech.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_mechs_for_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/creds.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/import_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/iter_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/kdc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/oid.txt: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/compat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/context_stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/cred_stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/spnego_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_add_store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_kcred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_ntlm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/version-script.map: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/aes.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/bn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/bn.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/camellia-ntt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/camellia.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/des.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/destest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh-ltm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh-tfm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dllmain.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/dsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dsa.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ec.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ecdsa.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/engine.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/engine.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-cc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-cc.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-crypt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-hcrypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-openssl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-openssl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-pkcs11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-pkcs11.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-w32.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-wincng.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-wincng.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/example_evp_cipher.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/hash.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/hmac.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libhcrypto-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_mp_invmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_mp_montgomery_reduce.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_s_mp_mul_digs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_s_mp_mul_high_digs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_s_mp_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_2expt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_abs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_add.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_add_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_addmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_and.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_clamp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_clear.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_clear_multi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_cmp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_cmp_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_cmp_mag.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_cnt_lsb.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_count_bits.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div_2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div_2d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div_3.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_dr_is_modulus.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_dr_reduce.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_dr_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_exch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_expt_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_exptmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_exptmod_fast.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_exteuclid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_find_prime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_fread.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_fwrite.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_gcd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_get_int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_grow.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_multi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_set.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_set_int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_size.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_invmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_invmod_slow.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_is_square.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_isprime.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_jacobi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_karatsuba_mul.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_karatsuba_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_lcm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_lshd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mod_2d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mod_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_montgomery_calc_normalization.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_montgomery_reduce.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_montgomery_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mul.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mul_2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mul_2d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mul_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mulmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_n_root.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_neg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_or.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_fermat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_is_divisible.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_is_prime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_miller_rabin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_next_prime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_rabin_miller_trials.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_random_ex.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_radix_size.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_radix_smap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_read_radix.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_read_signed_bin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_read_unsigned_bin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_2k.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_2k_l.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_2k_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_2k_setup_l.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_is_2k.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_is_2k_l.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_rshd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_set.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_set_int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_shrink.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_signed_bin_size.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sqrmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sqrt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sub.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sub_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_submod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_to_signed_bin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_to_signed_bin_n.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_to_unsigned_bin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_to_unsigned_bin_n.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_toom_mul.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_toom_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_toradix.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_toradix_n.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_unsigned_bin_size.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_xor.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_zero.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_zero_multi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_prime_tab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_reverse.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_add.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_exptmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_mul_digs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_mul_high_digs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_sub.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bncore.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/demo/demo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/demo/timing.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/2kprime.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/drprime.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/mersenne.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/mont.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/pprime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/timer.asm: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/tune.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/gen.pl: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/logs/README: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/logs/index.html: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/makefile.cygwin_dll: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/logtab.h: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mpi-config.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mpi-types.h: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mpi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mpi.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mtest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/pics/makefile: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/pretty.build: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/tommath.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/tommath_class.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/tommath_superclass.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md2.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/hcrypto/md2.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md4.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md4.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5crypt_test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/mdtest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/passwd_dlg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/pkcs12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/pkcs5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-egd.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-fortuna.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-timer.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-unix.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/randi.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc2test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc4.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rctest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rijndael-alg-fst.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rnd_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-gmp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-ltm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-tfm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha256.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha512.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_bn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_bulk.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_cipher.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_crypto.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_dh.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_engine_dso.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_hmac.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_pkcs12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_pkcs5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_rsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ui.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/undef.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/validate.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hdb/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/db.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/db3.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/dbinfo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-ldap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-mdb.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-mitdb.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-sqlite.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.schema: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/keys.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hdb/keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/libhdb-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hdb/mkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_dbinfo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_hdbkeys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_hdbplugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_mkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/heimdal/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/heimdal/dllmain.c delete
crypto/external/bsd/heimdal/dist/lib/hx509/ChangeLog: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ca.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/cert.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hx509/char_map.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/cms.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/collector.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/crypto-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/data/mkcert.sh: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/openssl.cnf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/env.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hx509.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hx509_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/hx_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hxtool-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/hxtool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/keyset.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_dir.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_keychain.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_mem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_p11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_p12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/libhx509-exports.def: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/lock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ref/pkcs11.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/revoke.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hx509/sel-lex.l: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/sel.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/sel.h: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hx509/softp11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/test_ca.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_cert.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_chain.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_cms.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_expr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/test_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/test_nist.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_nist2.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_nist_pkcs12.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_soft_pkcs11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ipc/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ipc/client.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/heim-ipc.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/server.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/tc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/ts-http.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/ts.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/kadm5/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/acl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ad.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/kadm5/admin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/chpass_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/chpass_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/common_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/context_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/create_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/create_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/default_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/delete_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/destroy_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/destroy_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ent_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_princs_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/init_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/init_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-log.8: up to 1.6
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop.8: up to 1.5
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_master.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_slave.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/kadm5_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kadm5/kadm5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/libkadm5srv-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/marshall.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/modify_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/password_quality.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/private.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/randkey_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/randkey_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/rename_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/send_recv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/set_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/setkey3_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/test_pw_quality.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/version-script-client.map: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/kadm5/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kafs/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/kafs/afskrb5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/afssys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/kafs.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/kafs.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/kafs_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/rxkad_kdf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kdfs/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kdfs/k5dfspag.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/krb5/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/acache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/acl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/addr_families.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/aes-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/an2ln_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/aname_to_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/appdefault.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/asn1_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/auth_context.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/build_auth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/cache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/changepw.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/codec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/config_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/config_reg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/constants.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/context.c: up to 1.6
crypto/external/bsd/heimdal/dist/lib/krb5/convert_creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/copy_host_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes-sha1.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes-sha2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes.c delete
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-algs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des-common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des3.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-evp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-pk.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/data.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/db_plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/db_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/dcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/deprecated.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/derived-key-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/digest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/dll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/eai_to_heim_errno.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/enomem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/error_string.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/expand_hostname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/expand_path.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/fast.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/fcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/generate_subkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_addrs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_principal.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_for_creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_host_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_in_tkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/heim_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/init_creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/init_creds_pw.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kcm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kerberos.8: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keyblock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_any.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_keyfile.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_memory.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5-plugin.7: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5.conf.5: up to 1.6
crypto/external/bsd/heimdal/dist/lib/krb5/krb5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_auth_context.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_c_make_checksum.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_check_transited.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_create_checksum.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_creds.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_digest.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_encrypt.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_get_creds.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_get_init_creds.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_init_context.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_mk_req.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_parse_name.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_principal.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_set_default_realm.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_timeofday.3: up to 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/krbhst.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/libkrb5-exports.def.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/locate_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/misc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mit_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_priv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_rep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_req_ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_safe.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/n-fold-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/n-fold.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/net_read.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/net_write.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pac.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/padata.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pkinit-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pkinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/principal.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pseudo-random-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_priv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_rep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_req.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_safe.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/recvauth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/replay.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes-sha1.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes-sha2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes.c delete
crypto/external/bsd/heimdal/dist/lib/krb5/salt-arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-des3.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/scache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c: up to 1.7
crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/sendauth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/set_default_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/sp800-108-kdf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store-int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store-int.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_emem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_fd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_mem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_sock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/string-to-key-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_acl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_alname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_ap-req.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_canon.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_cc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_config.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_crypto_wrapping.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_expand_toks.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_fx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_gic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_kuserok.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_pac.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_pknistkdf.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/test_plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_rfc3961.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_set_kvno0.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_store.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_x500.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/ticket.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/transited.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_init.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_krb5_conf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_user.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/version-script.map: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/warn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/ntlm/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/apop.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/digest.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/heim-auth.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/heimntlm.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/ntlm.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/ntlm_err.et: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/test_commonauth.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/test_ntlm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/otp/otp_md.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otptest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ChangeLog: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/roken/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/bswap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/cloexec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/concat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ct.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/daemon.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/detach.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dirent-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dirent.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dlfcn.hin: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/roken/dlfcn_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dumpdata.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ecalloc.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/err.hin: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/fnmatch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/get_window_size.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/roken/getaddrinfo_hostspec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getarg.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getarg.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/roken/getcap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getifaddrs-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getifaddrs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getifaddrs_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getxxyyy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/glob.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/hex-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/hex.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/issuid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/memset_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/mkdir.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ndbm_wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_bytes-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_time-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_time.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_units.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/qsort.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/realloc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rename.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/resolve-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/resolve.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/roken/rkpty.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/roken-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/roken.awk: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/roken/roken.h.in: up to 1.4
crypto/external/bsd/heimdal/dist/lib/roken/roken_gethostby.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rtbl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rtbl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/search.hin: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/roken/sendmsg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/simple_exec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/simple_exec_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/sleep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/snprintf-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/snprintf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/socket.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/socket_wrapper.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/sockstartup_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/stdint.hin: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/roken/strftime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/strsep_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/strtoll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/strtoull.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/syslogc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/test-detach.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/test-mem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/test-mini_inetd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/tsearch-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/tsearch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/unvis.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/roken/win32_alloc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/write_pid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/sl/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/sl/sl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/sl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/slc-gram.y: up to 1.2
crypto/external/bsd/heimdal/dist/lib/vers/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/vers/print_version.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/wind/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/wind/bidi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/combining.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/errorlist.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/gen-bidi.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-combining.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-errorlist.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-normalize.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/ldap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/libwind-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/wind/map.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/normalize.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/stringprep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-bidi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-ldap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-normalize.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-prohibited.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-utf8.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/utf8.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/packages/mac/Resources/English.lproj/Welcome.rtf: up to 1.2
crypto/external/bsd/heimdal/dist/packages/mac/mac.sh: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/packages/windows/NTMakefile: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/assembly/Heimdal.Kerberos.manifest.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/packages/windows/assembly/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/assembly/policy.Heimdal.Kerberos.in: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-assemblies.wxs: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-command.wxs: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-gss.wxs: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-installer.wxs: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-policy.wxs: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_banner.bmp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_banner.png: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_dialog.bmp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_dialog.png: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/lang/en-us.wxl: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/packages/windows/sdk/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/po/heimdal_krb5/heimdal_krb5.pot: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/po/heimdal_krb5/sv_SE.po: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/bin/Makefile.am: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/bin/intr.c: up to 1.2
crypto/external/bsd/heimdal/dist/tests/bin/setup-env.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/can/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/check-can.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/mit-pkinit-20070607.xf: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/test_can.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/db/add-modify-delete.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/check-aliases.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/check-dbinfo.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/have-db.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/db/krb5-mit.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/krb5.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/loaddump-db.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/gss/check-basic.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-context.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-gssmask.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-ntlm.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-spnego.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/gss/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/java/check-kinit.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/jaas.conf: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/an2ln-db.txt: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-authz.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-canon.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-cc.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-delegation.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-des.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-digest.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-fast.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-hdb-mitdb.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-iprop.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-kadmin.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-kdc.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-kinit.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-kpasswdd.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-pkinit.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-referral.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-tester.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-uu.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb.kadm5: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb.mkey: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/heimdal.acl: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/k5login/foo: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester1.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester2.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester3.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester4.json.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-authz.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-authz2.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-canon.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-canon2.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-hdb-mitdb.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-pkinit.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/krb5.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/krb5.conf.keys.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/leaks-kill.sh: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/wait-kdc.sh: up to 1.2
crypto/external/bsd/heimdal/dist/tests/ldap/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/ldap/check-ldap.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/slapd-init.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/slapd.conf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/plugin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/plugin/check-pac.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/plugin/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/plugin/windc.c: up to 1.2
crypto/external/bsd/heimdal/dist/tools/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tools/heimdal-gssapi.pc.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tools/heimdal-kadm-client.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/heimdal-kadm-server.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/heimdal-krb5.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kadm-client.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kadm-server.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kafs.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/krb5-config.1: up to 1.2
crypto/external/bsd/heimdal/dist/tools/krb5-config.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tools/krb5-gssapi.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/krb5.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/windows/NTMakefile.config: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/windows/NTMakefile.version: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/windows/NTMakefile.w32: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/windows/README delete
crypto/external/bsd/heimdal/dist/windows/README.md: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/windows/maint.el delete
crypto/external/bsd/heimdal/dist/windows/version.rc: up to 1.1.1.2
crypto/external/bsd/heimdal/heimdal2netbsd: up to 1.8
crypto/external/bsd/heimdal/include/config.h: up to 1.8 via patch
crypto/external/bsd/heimdal/include/der-private.h: up to 1.2
crypto/external/bsd/heimdal/include/der-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/gsskrb5-private.h: up to 1.3
crypto/external/bsd/heimdal/include/hdb-private.h: up to 1.2
crypto/external/bsd/heimdal/include/hdb-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/heimntlm-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/hx509-private.h: up to 1.3
crypto/external/bsd/heimdal/include/hx509-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kadm5-private.h: up to 1.2
crypto/external/bsd/heimdal/include/kadm5-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kcm-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kdc-private.h: up to 1.3
crypto/external/bsd/heimdal/include/kdc-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/krb5-private.h: up to 1.3
crypto/external/bsd/heimdal/include/krb5-protos.h: up to 1.4
crypto/external/bsd/heimdal/include/krb5-types.h: up to 1.7
crypto/external/bsd/heimdal/include/ntlm-private.h: up to 1.3
crypto/external/bsd/heimdal/include/roken.h: up to 1.7
crypto/external/bsd/heimdal/include/spnego-private.h: up to 1.2
crypto/external/bsd/heimdal/include/version.h: up to 1.3
crypto/external/bsd/heimdal/lib/libasn1/Makefile: up to 1.5
crypto/external/bsd/heimdal/lib/libasn1/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libcom_err/compile_et/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libcom_err/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libgssapi/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libgssapi/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libhdb/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libhdb/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libheimbase/Makefile: up to 1.2
crypto/external/bsd/heimdal/lib/libheimbase/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libheimntlm/Makefile: up to 1.2
crypto/external/bsd/heimdal/lib/libheimntlm/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libhx509/Makefile: up to 1.5
crypto/external/bsd/heimdal/lib/libhx509/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkadm5clnt/Makefile: up to 1.3
crypto/external/bsd/heimdal/lib/libkadm5clnt/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkadm5srv/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libkadm5srv/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkafs/Makefile: up to 1.3
crypto/external/bsd/heimdal/lib/libkafs/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkdc/Makefile: up to 1.3
crypto/external/bsd/heimdal/lib/libkdc/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkrb5/Makefile: up to 1.11
crypto/external/bsd/heimdal/lib/libkrb5/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libroken/Makefile: up to 1.2
crypto/external/bsd/heimdal/lib/libroken/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libsl/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libsl/slc/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libwind/shlib_version: up to 1.2
crypto/external/bsd/heimdal/libexec/Makefile.inc: up to 1.5
crypto/external/bsd/heimdal/sbin/Makefile.inc: up to 1.4
crypto/external/bsd/heimdal/sbin/kadmin/Makefile: up to 1.3
crypto/external/bsd/heimdal/sbin/kdigest/Makefile: up to 1.3
crypto/external/bsd/heimdal/sbin/ktutil/Makefile: up to 1.3
distrib/sets/lists/base/ad.mips64eb: patch
distrib/sets/lists/base/ad.mips64el: patch
distrib/sets/lists/base/md.amd64: patch
distrib/sets/lists/base/md.sparc64: patch
distrib/sets/lists/base/mi: patch
distrib/sets/lists/base/shl.mi: patch
distrib/sets/lists/comp/ad.mips64eb: patch
distrib/sets/lists/comp/ad.mips64el patch
distrib/sets/lists/comp/md.amd64: patch
distrib/sets/lists/comp/md.sparc64: patch
distrib/sets/lists/comp/mi: patch
distrib/sets/lists/comp/shl.mi: patch
distrib/sets/lists/man/mi: patch
external/bsd/bind/Makefile.inc: 1.25 via patch
external/gpl2/xcvs/bin/xcvs/Makefile: 1.5
libexec/telnetd/Makefile: 1.50
share/mk/bsd.prog.mk: 1.301
usr.bin/passwd/Makefile: 1.45 via patch
usr.bin/telnet/Makefile: 1.51
usr.sbin/racoon/Makefile: 1.28
Update Heimdal to 7.1.
 1.42.10.1 25-Feb-2013  tls resync with head
 1.42.6.2 30-Aug-2017  snj Pull up following revision(s) (requested by mrg in ticket #1493):
crypto/external/bsd/heimdal/Makefile.inc: up to 1.3
crypto/external/bsd/heimdal/Makefile.rules.inc: up to 1.8
crypto/external/bsd/heimdal/bin/Makefile: up to 1.2
crypto/external/bsd/heimdal/bin/Makefile.inc: up to 1.3
crypto/external/bsd/heimdal/bin/kcc/Makefile: up to 1.3
crypto/external/bsd/heimdal/bin/krb5-config/Makefile: up to 1.3
crypto/external/bsd/heimdal/bin/kvno/Makefile: up to 1.1
crypto/external/bsd/heimdal/bin/kvno/kvno.1: up to 1.1
crypto/external/bsd/heimdal/dist/LICENSE: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/NEWS: up to 1.2
crypto/external/bsd/heimdal/dist/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/README.fast: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/admin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/admin/add.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/change.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/get.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/ktutil-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/admin/ktutil.1: up to 1.2
crypto/external/bsd/heimdal/dist/admin/ktutil.8 delete
crypto/external/bsd/heimdal/dist/admin/ktutil.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/list.c: up to 1.2
crypto/external/bsd/heimdal/dist/appveyor.yml: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/autogen.sh: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/base/Makefile.am delete
crypto/external/bsd/heimdal/dist/base/NTMakefile delete
crypto/external/bsd/heimdal/dist/base/array.c delete
crypto/external/bsd/heimdal/dist/base/baselocl.h delete
crypto/external/bsd/heimdal/dist/base/bool.c delete
crypto/external/bsd/heimdal/dist/base/dict.c delete
crypto/external/bsd/heimdal/dist/base/heimbase.c delete
crypto/external/bsd/heimdal/dist/base/heimbase.h delete
crypto/external/bsd/heimdal/dist/base/heimbasepriv.h delete
crypto/external/bsd/heimdal/dist/base/heimqueue.h delete
crypto/external/bsd/heimdal/dist/base/json.c delete
crypto/external/bsd/heimdal/dist/base/null.c delete
crypto/external/bsd/heimdal/dist/base/number.c delete
crypto/external/bsd/heimdal/dist/base/roken_rename.h delete
crypto/external/bsd/heimdal/dist/base/string.c delete
crypto/external/bsd/heimdal/dist/base/test_base.c delete
crypto/external/bsd/heimdal/dist/base/version-script.map delete
crypto/external/bsd/heimdal/dist/cf/Makefile.am.common: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/check-compile-et.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/check-getpwnam_r-posix.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/check-man.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/check-x.m4 delete
crypto/external/bsd/heimdal/dist/cf/check-xau.m4 delete
crypto/external/bsd/heimdal/dist/cf/crypto.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/db.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/dispatch.m4: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/dlopen.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/find-func-no-libs2.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/install-catman.sh: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/krb-ipv6.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/krb-prog-perl.m4: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/cf/make-proto.pl: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/maybe-valgrind.sh: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/misc.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/proto-compat.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/pthreads.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/retsigtype.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/roken-frag.m4: up to 1.2
crypto/external/bsd/heimdal/dist/cf/roken-h-process.pl: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/sunos.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/test-package.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/valgrind-suppressions: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/version-script.m4: up to 1.2
crypto/external/bsd/heimdal/dist/cf/wflags.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/with-all.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/configure.ac: up to 1.2
crypto/external/bsd/heimdal/dist/doc/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/doc/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/doc/ack.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/base.din: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/doc/base.hhp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/doc/copyright.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/doxytmpl.dxy: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/doc/heimdal.hhp: up to 1.2
crypto/external/bsd/heimdal/dist/doc/heimdal.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/hx509.hhp: up to 1.2
crypto/external/bsd/heimdal/dist/doc/hx509.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/intro.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/kerberos4.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/migration.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/oid.txt delete
crypto/external/bsd/heimdal/dist/doc/setup.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/vars.tin: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/doc/whatis.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/win2k.texi: up to 1.2
crypto/external/bsd/heimdal/dist/etc/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/include/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/bits.c: up to 1.2
crypto/external/bsd/heimdal/dist/include/config.h.w32: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/include/crypto-headers.h: up to 1.2
crypto/external/bsd/heimdal/dist/include/gssapi/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/hcrypto/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/include/heim_threads.h: up to 1.2
crypto/external/bsd/heimdal/dist/include/kadm5/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/krb5-types.cross: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kadmin/add-random-users.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/add_enctype.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/ank.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/check.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/cpw.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/del_enctype.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/dump.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/get.c: up to 1.4
crypto/external/bsd/heimdal/dist/kadmin/init.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadm_conn.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/kadmin/kadmin.1: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin.8 delete
crypto/external/bsd/heimdal/dist/kadmin/kadmin.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmind.8: up to 1.5
crypto/external/bsd/heimdal/dist/kadmin/kadmind.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/load.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/mod.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/rpc.c: up to 1.3
crypto/external/bsd/heimdal/dist/kadmin/server.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/stash.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/util.c: up to 1.4
crypto/external/bsd/heimdal/dist/kcm/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kcm/acquire.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/cache.c: up to 1.3
crypto/external/bsd/heimdal/dist/kcm/client.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/connect.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/events.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/kcm.8: up to 1.5
crypto/external/bsd/heimdal/dist/kcm/kcm_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/main.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/protocol.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/renew.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/sessions.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kdc/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kdc/announce.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/connect.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/default_config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/digest-service.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/digest.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/fast.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/headers.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hprop.8: up to 1.5
crypto/external/bsd/heimdal/dist/kdc/hprop.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hprop.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hpropd.8: up to 1.4
crypto/external/bsd/heimdal/dist/kdc/hpropd.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc-replay.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc-tester.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc.8: up to 1.5
crypto/external/bsd/heimdal/dist/kdc/kdc.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kerberos5.c: up to 1.7
crypto/external/bsd/heimdal/dist/kdc/krb5tgs.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kstash.8: up to 1.4
crypto/external/bsd/heimdal/dist/kdc/kstash.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kx509.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/main.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/misc.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/mit_dump.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/pkinit-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/pkinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/process.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/set_dbinfo.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/string2key.8: up to 1.4
crypto/external/bsd/heimdal/dist/kdc/string2key.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/windc.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/windc_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd-generator.c: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd.1: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd.c: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswdd.8: up to 1.4
crypto/external/bsd/heimdal/dist/kpasswd/kpasswdd.c: up to 1.4
crypto/external/bsd/heimdal/dist/krb5.conf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kuser/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kuser/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kuser/copy_cred_cache.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/copy_cred_cache.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/generate-requests.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/heimtools-commands.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/kuser/heimtools-version.rc: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/kuser/heimtools.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kcc-commands.in delete
crypto/external/bsd/heimdal/dist/kuser/kcc-version.rc delete
crypto/external/bsd/heimdal/dist/kuser/kcc.c delete
crypto/external/bsd/heimdal/dist/kuser/kcpytkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdecode_ticket.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdeltkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdestroy.1: up to 1.5
crypto/external/bsd/heimdal/dist/kuser/kdestroy.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdigest.8: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdigest.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kgetcred.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kgetcred.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kimpersonate.8: up to 1.5
crypto/external/bsd/heimdal/dist/kuser/kimpersonate.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kinit.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/klist.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/klist.c: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kswitch.1: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kswitch.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kuser_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kverify.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kvno.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/45/NTMakefile delete
crypto/external/bsd/heimdal/dist/lib/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1-template.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1_gen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1_print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1parse.y: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-der.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-gen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_cmp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_format.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_get.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_length.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_put.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/digest.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/extra.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/fuzzer.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/asn1/gen_decode.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_encode.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_length.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_locl.h: up to 1.3
crypto/external/bsd/heimdal/dist/lib/asn1/gen_seq.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/krb5.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/lex.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/lex.l: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/libasn1-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/asn1/main.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/asn1/pkinit.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/pku2u.asn1: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/asn1/rfc2459.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/roken_rename.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/symbol.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/symbol.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/test.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/test.opt: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/asn1/timegm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/Makefile.am: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/base/NTMakefile: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/base/array.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/baselocl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/bool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/bsearch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/data.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/db.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/dict.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/dll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbase.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbase.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbasepriv.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimqueue.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/json.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/number.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/roken_rename.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/string.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/test_base.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/version-script.map: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/com_err/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/com_err/com_err.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/com_err/com_err.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/com_err.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/com_right.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/compile_et.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/com_err/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/lex.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/parse.y: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gen-oid.pl: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gss-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gss_acquire_cred.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi.3: up to 1.5
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi/gssapi.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi/gssapi_krb5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi/gssapi_oid.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi_mech.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gsstool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/8003.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/aeap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/authorize_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/cfx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/compat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/copy_ccache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/decapsulate.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/encapsulate.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/export_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/get_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/gsskrb5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/import_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/import_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/init_sec_context.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_names_for_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/pname_to_uid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/prf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/sequence.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/set_cred_option.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/set_sec_context_option.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_cfx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_kcred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/unwrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/verify_mic.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/libgssapi-exports.def: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/compat.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/cred.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred_ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred_with_password.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_add_cred_with_password.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_add_oid_set_member.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_aeap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_authorize_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_buffer_set.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_decapsulate_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_delete_name_attribute.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_delete_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_destroy_cred.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_name_ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_status.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_encapsulate_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_export_name_composite.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_export_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_get_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_get_name_attribute.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_import_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_import_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_indicate_mechs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_krb5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_mech_switch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_mo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_names.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_oid_equal.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_pname_to_uid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_release_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_set_cred_option.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_set_name_attribute.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_test_oid_set_member.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_unwrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_verify_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_wrap_size_limit.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gssapi.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/mech.5: up to 1.5
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/mech_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/accept_sec_context.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/acquire_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/add_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/canonicalize_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/compare_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/display_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/duplicate_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/export_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/init_sec_context.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_cred_by_mech.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_mechs_for_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/creds.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/import_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/iter_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/kdc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/oid.txt: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/compat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/context_stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/cred_stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/spnego_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_add_store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_kcred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_ntlm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/version-script.map: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/aes.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/bn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/bn.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/camellia-ntt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/camellia.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/des.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/destest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh-ltm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh-tfm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dllmain.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/dsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dsa.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ec.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ecdsa.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/engine.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/engine.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-cc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-cc.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-crypt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-hcrypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-openssl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-openssl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-pkcs11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-pkcs11.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-w32.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-wincng.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-wincng.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/example_evp_cipher.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/hash.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/hmac.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libhcrypto-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_mp_invmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_mp_montgomery_reduce.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_s_mp_mul_digs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_s_mp_mul_high_digs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_fast_s_mp_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_2expt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_abs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_add.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_add_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_addmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_and.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_clamp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_clear.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_clear_multi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_cmp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_cmp_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_cmp_mag.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_cnt_lsb.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_count_bits.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div_2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div_2d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div_3.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_div_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_dr_is_modulus.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_dr_reduce.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_dr_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_exch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_expt_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_exptmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_exptmod_fast.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_exteuclid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_find_prime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_fread.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_fwrite.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_gcd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_get_int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_grow.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_multi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_set.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_set_int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_init_size.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_invmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_invmod_slow.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_is_square.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_isprime.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_jacobi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_karatsuba_mul.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_karatsuba_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_lcm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_lshd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mod_2d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mod_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_montgomery_calc_normalization.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_montgomery_reduce.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_montgomery_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mul.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mul_2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mul_2d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mul_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mulmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_n_root.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_neg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_or.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_fermat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_is_divisible.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_is_prime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_miller_rabin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_next_prime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_rabin_miller_trials.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_random_ex.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_radix_size.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_radix_smap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_read_radix.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_read_signed_bin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_read_unsigned_bin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_2k.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_2k_l.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_2k_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_2k_setup_l.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_is_2k.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_is_2k_l.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_reduce_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_rshd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_set.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_set_int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_shrink.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_signed_bin_size.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sqrmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sqrt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sub.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_sub_d.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_submod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_to_signed_bin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_to_signed_bin_n.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_to_unsigned_bin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_to_unsigned_bin_n.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_toom_mul.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_toom_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_toradix.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_toradix_n.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_unsigned_bin_size.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_xor.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_zero.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_zero_multi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_prime_tab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_reverse.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_add.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_exptmod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_mul_digs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_mul_high_digs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_sqr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_s_mp_sub.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bncore.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/demo/demo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/demo/timing.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/2kprime.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/drprime.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/mersenne.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/mont.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/pprime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/timer.asm: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/tune.c: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/gen.pl: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/logs/README: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/logs/index.html: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/makefile.cygwin_dll: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/logtab.h: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mpi-config.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mpi-types.h: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mpi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mpi.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/mtest/mtest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/pics/makefile: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/pretty.build: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/tommath.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/tommath_class.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/tommath_superclass.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md2.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/hcrypto/md2.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md4.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md4.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5crypt_test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/mdtest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/passwd_dlg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/pkcs12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/pkcs5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-egd.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-fortuna.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-timer.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-unix.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/randi.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc2test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc4.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rctest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rijndael-alg-fst.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rnd_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-gmp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-ltm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-tfm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha256.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha512.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_bn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_bulk.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_cipher.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_crypto.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_dh.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_engine_dso.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_hmac.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_pkcs12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_pkcs5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_rsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ui.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/undef.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/validate.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hdb/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/db.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/db3.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/dbinfo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-ldap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-mdb.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-mitdb.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-sqlite.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.schema: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/keys.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hdb/keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/libhdb-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hdb/mkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_dbinfo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_hdbkeys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_hdbplugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_mkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/heimdal/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/heimdal/dllmain.c delete
crypto/external/bsd/heimdal/dist/lib/hx509/ChangeLog: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ca.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/cert.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hx509/char_map.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/cms.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/collector.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/crypto-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/data/mkcert.sh: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/openssl.cnf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/env.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hx509.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hx509_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/hx_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hxtool-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/hxtool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/keyset.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_dir.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_keychain.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_mem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_p11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_p12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/libhx509-exports.def: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/lock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ref/pkcs11.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/revoke.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hx509/sel-lex.l: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/sel.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/sel.h: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hx509/softp11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/test_ca.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_cert.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_chain.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_cms.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_expr.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/test_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/test_nist.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_nist2.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_nist_pkcs12.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_soft_pkcs11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ipc/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ipc/client.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/heim-ipc.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/server.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/tc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/ts-http.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/ts.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/kadm5/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/acl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ad.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/kadm5/admin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/chpass_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/chpass_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/common_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/context_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/create_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/create_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/default_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/delete_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/destroy_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/destroy_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ent_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_princs_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/init_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/init_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-log.8: up to 1.6
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop.8: up to 1.5
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_master.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_slave.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/kadm5_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kadm5/kadm5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/libkadm5srv-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/marshall.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/modify_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/password_quality.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/private.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/randkey_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/randkey_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/rename_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/send_recv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/set_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/setkey3_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/test_pw_quality.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/version-script-client.map: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/kadm5/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kafs/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/kafs/afskrb5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/afssys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/kafs.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/kafs.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/kafs_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/rxkad_kdf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kdfs/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kdfs/k5dfspag.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/krb5/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/acache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/acl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/addr_families.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/aes-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/an2ln_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/aname_to_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/appdefault.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/asn1_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/auth_context.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/build_auth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/cache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/changepw.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/codec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/config_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/config_reg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/constants.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/context.c: up to 1.6
crypto/external/bsd/heimdal/dist/lib/krb5/convert_creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/copy_host_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes-sha1.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes-sha2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes.c delete
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-algs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des-common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des3.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-evp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-pk.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/data.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/db_plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/db_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/dcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/deprecated.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/derived-key-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/digest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/dll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/eai_to_heim_errno.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/enomem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/error_string.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/expand_hostname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/expand_path.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/fast.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/fcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/generate_subkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_addrs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_principal.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_for_creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_host_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_in_tkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/heim_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/init_creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/init_creds_pw.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kcm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kerberos.8: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keyblock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_any.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_keyfile.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_memory.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5-plugin.7: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5.conf.5: up to 1.6
crypto/external/bsd/heimdal/dist/lib/krb5/krb5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_auth_context.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_c_make_checksum.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_check_transited.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_create_checksum.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_creds.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_digest.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_encrypt.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_get_creds.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_get_init_creds.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_init_context.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_mk_req.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_parse_name.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_principal.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_set_default_realm.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_timeofday.3: up to 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/krbhst.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/libkrb5-exports.def.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/locate_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/misc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mit_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_priv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_rep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_req_ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_safe.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/n-fold-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/n-fold.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/net_read.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/net_write.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pac.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/padata.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pkinit-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pkinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/principal.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pseudo-random-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_priv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_rep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_req.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_safe.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/recvauth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/replay.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes-sha1.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes-sha2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes.c delete
crypto/external/bsd/heimdal/dist/lib/krb5/salt-arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-des3.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/scache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c: up to 1.7
crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/sendauth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/set_default_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/sp800-108-kdf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store-int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store-int.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_emem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_fd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_mem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_sock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/string-to-key-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_acl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_alname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_ap-req.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_canon.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_cc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_config.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_crypto_wrapping.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_expand_toks.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_fx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_gic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_kuserok.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_pac.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_pknistkdf.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/test_plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_rfc3961.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_set_kvno0.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_store.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_x500.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/ticket.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/transited.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_init.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_krb5_conf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_user.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/version-script.map: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/warn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/ntlm/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/apop.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/digest.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/heim-auth.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/heimntlm.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/ntlm.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/ntlm_err.et: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/test_commonauth.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/test_ntlm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/otp/otp_md.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otptest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ChangeLog: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/roken/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/bswap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/cloexec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/concat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ct.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/daemon.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/detach.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dirent-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dirent.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dlfcn.hin: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/roken/dlfcn_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dumpdata.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ecalloc.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/err.hin: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/fnmatch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/get_window_size.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/roken/getaddrinfo_hostspec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getarg.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getarg.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/roken/getcap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getifaddrs-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getifaddrs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getifaddrs_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getxxyyy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/glob.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/hex-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/hex.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/issuid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/memset_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/mkdir.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ndbm_wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_bytes-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_time-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_time.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_units.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/qsort.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/realloc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rename.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/resolve-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/resolve.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/roken/rkpty.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/roken-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/roken.awk: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/roken/roken.h.in: up to 1.4
crypto/external/bsd/heimdal/dist/lib/roken/roken_gethostby.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rtbl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rtbl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/search.hin: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/roken/sendmsg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/simple_exec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/simple_exec_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/sleep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/snprintf-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/snprintf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/socket.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/socket_wrapper.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/sockstartup_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/stdint.hin: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/roken/strftime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/strsep_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/strtoll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/strtoull.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/syslogc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/test-detach.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/test-mem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/test-mini_inetd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/tsearch-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/tsearch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/unvis.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/roken/win32_alloc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/write_pid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/sl/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/sl/sl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/sl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/slc-gram.y: up to 1.2
crypto/external/bsd/heimdal/dist/lib/vers/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/vers/print_version.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/wind/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/wind/bidi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/combining.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/errorlist.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/gen-bidi.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-combining.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-errorlist.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-normalize.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/ldap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/libwind-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/wind/map.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/normalize.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/stringprep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-bidi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-ldap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-normalize.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-prohibited.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-utf8.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/utf8.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/packages/mac/Resources/English.lproj/Welcome.rtf: up to 1.2
crypto/external/bsd/heimdal/dist/packages/mac/mac.sh: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/packages/windows/NTMakefile: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/assembly/Heimdal.Kerberos.manifest.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/packages/windows/assembly/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/assembly/policy.Heimdal.Kerberos.in: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-assemblies.wxs: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-command.wxs: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-gss.wxs: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-installer.wxs: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-policy.wxs: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_banner.bmp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_banner.png: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_dialog.bmp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_dialog.png: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/lang/en-us.wxl: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/packages/windows/sdk/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/po/heimdal_krb5/heimdal_krb5.pot: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/po/heimdal_krb5/sv_SE.po: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/bin/Makefile.am: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/bin/intr.c: up to 1.2
crypto/external/bsd/heimdal/dist/tests/bin/setup-env.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/can/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/check-can.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/mit-pkinit-20070607.xf: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/test_can.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/db/add-modify-delete.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/check-aliases.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/check-dbinfo.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/have-db.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/db/krb5-mit.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/krb5.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/loaddump-db.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/gss/check-basic.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-context.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-gssmask.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-ntlm.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-spnego.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/gss/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/java/check-kinit.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/jaas.conf: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/an2ln-db.txt: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-authz.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-canon.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-cc.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-delegation.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-des.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-digest.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-fast.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-hdb-mitdb.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-iprop.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-kadmin.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-kdc.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-kinit.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-kpasswdd.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-pkinit.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-referral.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-tester.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-uu.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb.kadm5: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb.mkey: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/heimdal.acl: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/k5login/foo: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester1.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester2.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester3.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester4.json.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-authz.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-authz2.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-canon.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-canon2.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-hdb-mitdb.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-pkinit.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/krb5.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/krb5.conf.keys.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/leaks-kill.sh: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/wait-kdc.sh: up to 1.2
crypto/external/bsd/heimdal/dist/tests/ldap/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/ldap/check-ldap.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/slapd-init.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/slapd.conf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/plugin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/plugin/check-pac.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/plugin/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/plugin/windc.c: up to 1.2
crypto/external/bsd/heimdal/dist/tools/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tools/heimdal-gssapi.pc.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tools/heimdal-kadm-client.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/heimdal-kadm-server.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/heimdal-krb5.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kadm-client.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kadm-server.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kafs.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/krb5-config.1: up to 1.2
crypto/external/bsd/heimdal/dist/tools/krb5-config.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tools/krb5-gssapi.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/krb5.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/windows/NTMakefile.config: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/windows/NTMakefile.version: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/windows/NTMakefile.w32: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/windows/README delete
crypto/external/bsd/heimdal/dist/windows/README.md: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/windows/maint.el delete
crypto/external/bsd/heimdal/dist/windows/version.rc: up to 1.1.1.2
crypto/external/bsd/heimdal/heimdal2netbsd: up to 1.8
crypto/external/bsd/heimdal/include/config.h: up to 1.8 via patch
crypto/external/bsd/heimdal/include/der-private.h: up to 1.2
crypto/external/bsd/heimdal/include/der-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/gsskrb5-private.h: up to 1.3
crypto/external/bsd/heimdal/include/hdb-private.h: up to 1.2
crypto/external/bsd/heimdal/include/hdb-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/heimntlm-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/hx509-private.h: up to 1.3
crypto/external/bsd/heimdal/include/hx509-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kadm5-private.h: up to 1.2
crypto/external/bsd/heimdal/include/kadm5-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kcm-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kdc-private.h: up to 1.3
crypto/external/bsd/heimdal/include/kdc-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/krb5-private.h: up to 1.3
crypto/external/bsd/heimdal/include/krb5-protos.h: up to 1.4
crypto/external/bsd/heimdal/include/krb5-types.h: up to 1.7
crypto/external/bsd/heimdal/include/ntlm-private.h: up to 1.3
crypto/external/bsd/heimdal/include/roken.h: up to 1.7
crypto/external/bsd/heimdal/include/spnego-private.h: up to 1.2
crypto/external/bsd/heimdal/include/version.h: up to 1.3
crypto/external/bsd/heimdal/lib/libasn1/Makefile: up to 1.5
crypto/external/bsd/heimdal/lib/libasn1/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libcom_err/compile_et/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libcom_err/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libgssapi/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libgssapi/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libhdb/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libhdb/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libheimbase/Makefile: up to 1.2
crypto/external/bsd/heimdal/lib/libheimbase/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libheimntlm/Makefile: up to 1.2
crypto/external/bsd/heimdal/lib/libheimntlm/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libhx509/Makefile: up to 1.5
crypto/external/bsd/heimdal/lib/libhx509/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkadm5clnt/Makefile: up to 1.3
crypto/external/bsd/heimdal/lib/libkadm5clnt/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkadm5srv/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libkadm5srv/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkafs/Makefile: up to 1.3
crypto/external/bsd/heimdal/lib/libkafs/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkdc/Makefile: up to 1.3
crypto/external/bsd/heimdal/lib/libkdc/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkrb5/Makefile: up to 1.11
crypto/external/bsd/heimdal/lib/libkrb5/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libroken/Makefile: up to 1.2
crypto/external/bsd/heimdal/lib/libroken/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libsl/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libsl/slc/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libwind/shlib_version: up to 1.2
crypto/external/bsd/heimdal/libexec/Makefile.inc: up to 1.5
crypto/external/bsd/heimdal/sbin/Makefile.inc: up to 1.4
crypto/external/bsd/heimdal/sbin/kadmin/Makefile: up to 1.3
crypto/external/bsd/heimdal/sbin/kdigest/Makefile: up to 1.3
crypto/external/bsd/heimdal/sbin/ktutil/Makefile: up to 1.3
distrib/sets/lists/base/ad.mips64eb: patch
distrib/sets/lists/base/ad.mips64el: patch
distrib/sets/lists/base/md.amd64: patch
distrib/sets/lists/base/md.sparc64: patch
distrib/sets/lists/base/mi: patch
distrib/sets/lists/base/shl.mi: patch
distrib/sets/lists/comp/ad.mips64eb: patch
distrib/sets/lists/comp/ad.mips64el patch
distrib/sets/lists/comp/md.amd64: patch
distrib/sets/lists/comp/md.sparc64: patch
distrib/sets/lists/comp/mi: patch
distrib/sets/lists/comp/shl.mi: patch
distrib/sets/lists/man/mi: patch
external/bsd/bind/Makefile.inc: 1.25 via patch
external/gpl2/xcvs/bin/xcvs/Makefile: 1.5
libexec/telnetd/Makefile: 1.50
share/mk/bsd.prog.mk: 1.301
usr.bin/passwd/Makefile: 1.45 via patch
usr.bin/telnet/Makefile: 1.51
usr.sbin/racoon/Makefile: 1.28
Update Heimdal to 7.1.
 1.42.6.1 11-Feb-2015  martin Pull up following revision(s) (requested by aymeric in ticket #1251):
usr.bin/passwd/Makefile: revision 1.43,1.44
don't build kpasswd; heimdal does it for us.
Keep the built-in support for passwd -k, but don't make the kpasswd link or
install the kpasswd man page.
 1.42.4.1 22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.44.18.1 20-Aug-2017  snj Pull up following revision(s) (requested by mrg in ticket #1493):
crypto/external/bsd/heimdal/Makefile.rules.inc: up to 1.8
crypto/external/bsd/heimdal/bin/Makefile.inc: up to 1.3
crypto/external/bsd/heimdal/bin/kcc/Makefile: up to 1.3
crypto/external/bsd/heimdal/dist/LICENSE: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/NEWS: up to 1.2
crypto/external/bsd/heimdal/dist/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/README.fast: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/admin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/admin/add.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/change.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/get.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/ktutil-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/admin/ktutil.1: up to 1.2
crypto/external/bsd/heimdal/dist/admin/ktutil.8 delete
crypto/external/bsd/heimdal/dist/admin/ktutil.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/list.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/purge.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/remove.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/rename.c: up to 1.2
crypto/external/bsd/heimdal/dist/appveyor.yml: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/autogen.sh: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/base/Makefile.am delete
crypto/external/bsd/heimdal/dist/base/NTMakefile delete
crypto/external/bsd/heimdal/dist/base/array.c delete
crypto/external/bsd/heimdal/dist/base/baselocl.h delete
crypto/external/bsd/heimdal/dist/base/bool.c delete
crypto/external/bsd/heimdal/dist/base/dict.c delete
crypto/external/bsd/heimdal/dist/base/heimbase.c delete
crypto/external/bsd/heimdal/dist/base/heimbase.h delete
crypto/external/bsd/heimdal/dist/base/heimbasepriv.h delete
crypto/external/bsd/heimdal/dist/base/heimqueue.h delete
crypto/external/bsd/heimdal/dist/base/json.c delete
crypto/external/bsd/heimdal/dist/base/null.c delete
crypto/external/bsd/heimdal/dist/base/number.c delete
crypto/external/bsd/heimdal/dist/base/roken_rename.h delete
crypto/external/bsd/heimdal/dist/base/string.c delete
crypto/external/bsd/heimdal/dist/base/test_base.c delete
crypto/external/bsd/heimdal/dist/base/version-script.map delete
crypto/external/bsd/heimdal/dist/cf/Makefile.am.common: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/check-compile-et.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/check-x.m4 delete
crypto/external/bsd/heimdal/dist/cf/check-xau.m4 delete
crypto/external/bsd/heimdal/dist/cf/crypto.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/db.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/dispatch.m4: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/dlopen.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/find-func-no-libs2.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/install-catman.sh: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/krb-ipv6.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/krb-prog-perl.m4: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/cf/make-proto.pl: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/maybe-valgrind.sh: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/misc.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/proto-compat.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/pthreads.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/retsigtype.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/roken-frag.m4: up to 1.2
crypto/external/bsd/heimdal/dist/cf/roken-h-process.pl: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/sunos.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/test-package.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/valgrind-suppressions: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/version-script.m4: up to 1.2
crypto/external/bsd/heimdal/dist/cf/wflags.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/with-all.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/configure.ac: up to 1.2
crypto/external/bsd/heimdal/dist/doc/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/doc/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/doc/ack.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/base.din: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/doc/base.hhp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/doc/copyright.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/doxytmpl.dxy: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/doc/heimdal.hhp: up to 1.2
crypto/external/bsd/heimdal/dist/doc/hx509.hhp: up to 1.2
crypto/external/bsd/heimdal/dist/doc/migration.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/oid.txt delete
crypto/external/bsd/heimdal/dist/doc/setup.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/vars.tin: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/include/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/include/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/bits.c: up to 1.2
crypto/external/bsd/heimdal/dist/include/config.h.w32: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/include/crypto-headers.h: up to 1.2
crypto/external/bsd/heimdal/dist/include/hcrypto/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/include/heim_threads.h: up to 1.2
crypto/external/bsd/heimdal/dist/include/krb5-types.cross: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kadmin/add-random-users.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/add_enctype.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/ank.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/check.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/cpw.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/del_enctype.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/dump.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/get.c: up to 1.4
crypto/external/bsd/heimdal/dist/kadmin/init.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadm_conn.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/kadmin/kadmin.1: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin.8 delete
crypto/external/bsd/heimdal/dist/kadmin/kadmin.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmind.8: up to 1.5
crypto/external/bsd/heimdal/dist/kadmin/kadmind.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/load.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/mod.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/rpc.c: up to 1.3
crypto/external/bsd/heimdal/dist/kadmin/server.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/stash.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/util.c: up to 1.4
crypto/external/bsd/heimdal/dist/kcm/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kcm/acquire.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/cache.c: up to 1.3
crypto/external/bsd/heimdal/dist/kcm/client.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/events.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/kcm.8: up to 1.5
crypto/external/bsd/heimdal/dist/kcm/kcm_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/main.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/protocol.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/renew.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kdc/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kdc/config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/connect.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/default_config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/digest-service.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/digest.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/fast.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/headers.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hprop.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hprop.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hpropd.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc-replay.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc-tester.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc.8: up to 1.5
crypto/external/bsd/heimdal/dist/kdc/kdc.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kerberos5.c: up to 1.7
crypto/external/bsd/heimdal/dist/kdc/krb5tgs.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kstash.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kx509.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/main.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/misc.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/mit_dump.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/pkinit-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/pkinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/process.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/string2key.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/windc.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/windc_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd-generator.c: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd.c: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswdd.c: up to 1.4
crypto/external/bsd/heimdal/dist/krb5.conf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kuser/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kuser/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kuser/copy_cred_cache.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/generate-requests.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/heimtools-commands.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/kuser/heimtools-version.rc: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/kuser/heimtools.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kcc-commands.in delete
crypto/external/bsd/heimdal/dist/kuser/kcc-version.rc delete
crypto/external/bsd/heimdal/dist/kuser/kcc.c delete
crypto/external/bsd/heimdal/dist/kuser/kcpytkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdecode_ticket.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdeltkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdigest.8: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdigest.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kgetcred.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kgetcred.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kimpersonate.8: up to 1.5
crypto/external/bsd/heimdal/dist/kuser/kimpersonate.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kinit.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/klist.c: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kswitch.1: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kswitch.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kuser_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kverify.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/45/NTMakefile delete
crypto/external/bsd/heimdal/dist/lib/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1-template.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1_gen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1_print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1parse.y: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-ber.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-der.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-gen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-timegm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_cmp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_format.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_get.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_length.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_put.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/digest.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/extra.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/fuzzer.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/asn1/gen_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_decode.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_encode.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_length.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_locl.h: up to 1.3
crypto/external/bsd/heimdal/dist/lib/asn1/gen_seq.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/hash.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/krb5.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/lex.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/lex.l: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/libasn1-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/asn1/main.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/asn1/pkinit.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/pku2u.asn1: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/asn1/rfc2459.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/roken_rename.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/symbol.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/symbol.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/test.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/test.opt: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/asn1/timegm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/Makefile.am: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/base/NTMakefile: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/base/array.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/baselocl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/bool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/bsearch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/data.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/db.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/dict.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/dll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbase.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbase.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbasepriv.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimqueue.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/json.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/number.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/roken_rename.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/string.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/test_base.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/version-script.map: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/com_err/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/com_err/com_err.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/com_err.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/com_right.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/compile_et.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/com_err/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/lex.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gen-oid.pl: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gss-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gss_acquire_cred.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi/gssapi.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi/gssapi_krb5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi_mech.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gsstool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/8003.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/aeap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/authorize_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/cfx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/copy_ccache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/decapsulate.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/export_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/get_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/gsskrb5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/import_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/import_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/init_sec_context.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/pname_to_uid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/set_sec_context_option.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_cfx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/unwrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/verify_mic.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/libgssapi-exports.def: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/compat.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred_ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred_with_password.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_add_cred_with_password.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_aeap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_authorize_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_delete_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_status.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_get_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_import_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_indicate_mechs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_mech_switch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_mo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_pname_to_uid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_unwrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_verify_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_wrap_size_limit.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gssapi.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/accept_sec_context.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/acquire_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/add_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/canonicalize_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/compare_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/display_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/duplicate_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/export_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/init_sec_context.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_cred_by_mech.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_mechs_for_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/creds.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/kdc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/oid.txt: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/compat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/context_stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/cred_stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_add_store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_ntlm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/version-script.map: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/aes.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/bn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/bn.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/camellia-ntt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/camellia.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/destest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh-ltm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh-tfm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dllmain.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/dsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dsa.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ec.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/engine.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/engine.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-cc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-cc.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-crypt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-hcrypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-openssl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-openssl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-pkcs11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-pkcs11.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-w32.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-wincng.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-wincng.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/example_evp_cipher.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/hash.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/hmac.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libhcrypto-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_find_prime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_isprime.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_next_prime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_shrink.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/timer.asm: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/gen.pl: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/logs/README: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/pics/makefile: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/pretty.build: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/tommath.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/tommath_class.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md2.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/hcrypto/md2.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md4.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md4.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5crypt_test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/mdtest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/passwd_dlg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/pkcs12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/pkcs5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-egd.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-fortuna.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-timer.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-unix.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/randi.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc2test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc4.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rctest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rijndael-alg-fst.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rnd_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-gmp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-ltm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-tfm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha256.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha512.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_bn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_bulk.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_cipher.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_crypto.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_dh.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_engine_dso.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_hmac.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_pkcs12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_pkcs5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_rsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ui.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/undef.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/validate.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hdb/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/db.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/db3.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/dbinfo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-ldap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-mdb.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-mitdb.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-sqlite.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.schema: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/keys.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hdb/keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/libhdb-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hdb/mkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_dbinfo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_hdbkeys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_hdbplugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_mkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/heimdal/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/heimdal/dllmain.c delete
crypto/external/bsd/heimdal/dist/lib/hx509/ChangeLog: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ca.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/cert.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hx509/cms.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/crypto-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/data/mkcert.sh: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/openssl.cnf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/env.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hx509.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hx509_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/hx_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hxtool-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/hxtool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/keyset.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_dir.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_keychain.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_p11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_p12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/libhx509-exports.def: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/lock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ref/pkcs11.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/revoke.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hx509/sel-lex.l: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/softp11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/test_ca.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_cert.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_chain.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_cms.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/test_nist_pkcs12.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_soft_pkcs11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ipc/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ipc/client.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/heim-ipc.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/server.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/tc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/ts-http.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/ts.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/kadm5/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/acl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ad.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/kadm5/admin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/bump_pw_expire.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/chpass_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/chpass_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/client_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/common_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/context_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/create_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/create_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/default_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/delete_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/delete_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/destroy_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/destroy_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ent_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/flush.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/flush_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/flush_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_princs_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_princs_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/init_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/init_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-log.8: up to 1.6
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop.8: up to 1.5
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_master.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_slave.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/kadm5_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kadm5/kadm5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/libkadm5srv-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/marshall.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/modify_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/modify_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/password_quality.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/private.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/privs_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/privs_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/randkey_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/randkey_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/rename_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/rename_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/send_recv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/server_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/set_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/set_modifier.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/setkey3_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/test_pw_quality.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/version-script-client.map: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/kadm5/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kafs/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/kafs/afskrb5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/afssys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/kafs.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/kafs_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/rxkad_kdf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kdfs/k5dfspag.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/krb5/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/acache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/acl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/addr_families.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/aes-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/an2ln_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/aname_to_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/asn1_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/auth_context.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/build_auth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/cache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/changepw.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/config_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/config_reg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/constants.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/context.c: up to 1.6
crypto/external/bsd/heimdal/dist/lib/krb5/copy_host_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes-sha1.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes-sha2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes.c delete
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-algs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des-common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des3.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-evp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-pk.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/data.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/db_plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/db_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/dcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/deprecated.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/derived-key-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/digest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/dll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/enomem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/error_string.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/expand_hostname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/expand_path.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/fast.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/fcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/generate_subkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_addrs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_principal.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_for_creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_host_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_in_tkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/heim_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/init_creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/init_creds_pw.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kcm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kerberos.8: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keyblock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_any.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_keyfile.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_memory.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5-plugin.7: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5.conf.5: up to 1.6
crypto/external/bsd/heimdal/dist/lib/krb5/krb5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_auth_context.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_c_make_checksum.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_digest.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_get_creds.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_get_init_creds.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_parse_name.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_principal.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_set_default_realm.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_timeofday.3: up to 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/krbhst.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/libkrb5-exports.def.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/locate_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/misc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mit_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_priv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_rep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_req_ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/n-fold-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/n-fold.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/net_read.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pac.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/padata.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pkinit-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pkinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/principal.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pseudo-random-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_priv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_rep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_req.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_safe.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/recvauth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/replay.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes-sha1.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes-sha2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes.c delete
crypto/external/bsd/heimdal/dist/lib/krb5/salt-arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-des3.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/scache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c: up to 1.7
crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/sendauth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/set_default_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/sp800-108-kdf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store-int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store-int.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_emem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_fd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_mem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_sock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/string-to-key-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_alname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_canon.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_cc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_crypto_wrapping.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_expand_toks.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_fx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_kuserok.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_pknistkdf.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/test_plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_rfc3961.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_set_kvno0.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_store.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/ticket.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/transited.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_init.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_krb5_conf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_user.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/version-script.map: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/warn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/ntlm/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/apop.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/digest.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/heim-auth.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/heimntlm.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/ntlm.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/ntlm_err.et: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/test_commonauth.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/test_ntlm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/otp/otp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otp_challenge.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otp_db.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otp_parse.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otp_print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otp_verify.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otptest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ChangeLog: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/roken/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/bswap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/cloexec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ct.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/daemon.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/detach.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dirent.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dlfcn.hin: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/roken/dlfcn_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dumpdata.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/err.hin: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getarg.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getarg.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/roken/getcap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getxxyyy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/glob.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/hex-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/issuid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/memset_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/mkdir.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ndbm_wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_bytes-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_time-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_time.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/realloc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/resolve-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/resolve.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/roken/rkpty.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/roken-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/roken.awk: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/roken/roken.h.in: up to 1.4
crypto/external/bsd/heimdal/dist/lib/roken/roken_gethostby.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rtbl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rtbl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/simple_exec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/simple_exec_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/sleep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/snprintf-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/snprintf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/socket.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/stdint.hin: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/roken/strtoll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/strtoull.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/test-detach.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/test-mem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/tsearch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/roken/win32_alloc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/write_pid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/sl/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/sl/sl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/sl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/slc-gram.y: up to 1.2
crypto/external/bsd/heimdal/dist/lib/vers/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/vers/print_version.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/wind/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/wind/bidi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/combining.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/errorlist.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/gen-bidi.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-combining.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-errorlist.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-normalize.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/libwind-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/wind/map.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/normalize.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-normalize.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-utf8.c: up to 1.2
crypto/external/bsd/heimdal/dist/packages/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/packages/mac/Resources/English.lproj/Welcome.rtf: up to 1.2
crypto/external/bsd/heimdal/dist/packages/mac/mac.sh: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/packages/windows/NTMakefile: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/assembly/Heimdal.Kerberos.manifest.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/packages/windows/assembly/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/assembly/policy.Heimdal.Kerberos.in: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-assemblies.wxs: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-command.wxs: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-gss.wxs: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-installer.wxs: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-policy.wxs: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_banner.bmp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_banner.png: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_dialog.bmp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_dialog.png: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/sdk/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/po/heimdal_krb5/heimdal_krb5.pot: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/po/heimdal_krb5/sv_SE.po: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/bin/Makefile.am: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/bin/intr.c: up to 1.2
crypto/external/bsd/heimdal/dist/tests/bin/setup-env.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/can/check-can.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/mit-pkinit-20070607.xf: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/test_can.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/db/add-modify-delete.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/check-aliases.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/check-dbinfo.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/have-db.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/db/krb5-mit.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/krb5.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/loaddump-db.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/gss/check-basic.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-context.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-gssmask.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-ntlm.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-spnego.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/gss/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/java/check-kinit.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/jaas.conf: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/an2ln-db.txt: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-authz.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-canon.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-cc.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-delegation.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-des.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-digest.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-fast.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-hdb-mitdb.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-iprop.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-kadmin.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-kdc.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-kinit.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-kpasswdd.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-pkinit.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-referral.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-tester.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-uu.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb.kadm5: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb.mkey: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/heimdal.acl: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/k5login/foo: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester1.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester2.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester3.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester4.json.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-authz.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-authz2.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-canon.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-canon2.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-hdb-mitdb.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-pkinit.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/krb5.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/krb5.conf.keys.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/leaks-kill.sh: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/wait-kdc.sh: up to 1.2
crypto/external/bsd/heimdal/dist/tests/ldap/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/ldap/check-ldap.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/slapd-init.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/slapd.conf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/plugin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/plugin/check-pac.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/plugin/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/plugin/windc.c: up to 1.2
crypto/external/bsd/heimdal/dist/tools/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tools/heimdal-gssapi.pc.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tools/heimdal-kadm-client.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/heimdal-kadm-server.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/heimdal-krb5.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kadm-client.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kadm-server.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kafs.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/krb5-config.1: up to 1.2
crypto/external/bsd/heimdal/dist/tools/krb5-config.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tools/krb5-gssapi.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/krb5.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/windows/NTMakefile.config: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/windows/NTMakefile.version: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/windows/NTMakefile.w32: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/windows/README delete
crypto/external/bsd/heimdal/dist/windows/README.md: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/windows/maint.el delete
crypto/external/bsd/heimdal/dist/windows/version.rc: up to 1.1.1.2
crypto/external/bsd/heimdal/heimdal2netbsd: up to 1.8
crypto/external/bsd/heimdal/include/config.h: up to 1.8
crypto/external/bsd/heimdal/include/der-private.h: up to 1.2
crypto/external/bsd/heimdal/include/der-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/gsskrb5-private.h: up to 1.3
crypto/external/bsd/heimdal/include/hdb-private.h: up to 1.2
crypto/external/bsd/heimdal/include/hdb-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/heimntlm-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/hx509-private.h: up to 1.3
crypto/external/bsd/heimdal/include/hx509-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kadm5-private.h: up to 1.2
crypto/external/bsd/heimdal/include/kadm5-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kcm-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kdc-private.h: up to 1.3
crypto/external/bsd/heimdal/include/kdc-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/krb5-private.h: up to 1.3
crypto/external/bsd/heimdal/include/krb5-protos.h: up to 1.4
crypto/external/bsd/heimdal/include/krb5-types.h: up to 1.7
crypto/external/bsd/heimdal/include/ntlm-private.h: up to 1.3
crypto/external/bsd/heimdal/include/roken.h: up to 1.7
crypto/external/bsd/heimdal/include/spnego-private.h: up to 1.2
crypto/external/bsd/heimdal/include/version.h: up to 1.3
crypto/external/bsd/heimdal/lib/libasn1/Makefile: up to 1.5
crypto/external/bsd/heimdal/lib/libasn1/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libcom_err/compile_et/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libcom_err/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libgssapi/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libhdb/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libhdb/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libheimbase/Makefile: up to 1.2
crypto/external/bsd/heimdal/lib/libheimbase/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libheimntlm/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libhx509/Makefile: up to 1.5
crypto/external/bsd/heimdal/lib/libhx509/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkadm5clnt/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkadm5srv/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libkadm5srv/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkafs/Makefile: up to 1.3
crypto/external/bsd/heimdal/lib/libkafs/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkdc/Makefile: up to 1.3
crypto/external/bsd/heimdal/lib/libkdc/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkrb5/Makefile: up to 1.11
crypto/external/bsd/heimdal/lib/libkrb5/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libroken/Makefile: up to 1.2
crypto/external/bsd/heimdal/lib/libroken/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libsl/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libsl/slc/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libwind/shlib_version: up to 1.2
crypto/external/bsd/heimdal/libexec/Makefile.inc: up to 1.5
crypto/external/bsd/heimdal/sbin/Makefile.inc: up to 1.4
crypto/external/bsd/heimdal/sbin/kadmin/Makefile: up to 1.3
crypto/external/bsd/heimdal/sbin/ktutil/Makefile: up to 1.3
crypto/external/bsd/openssh/bin/ssh/Makefile: revision 1.11
crypto/external/bsd/openssh/bin/sshd/Makefile: revision 1.15
distrib/sets/lists/base/ad.aarch64: patch
distrib/sets/lists/base/ad.arm: patch
distrib/sets/lists/base/ad.mips: patch
distrib/sets/lists/base/ad.powerpc: patch
distrib/sets/lists/base/md.amd64: patch
distrib/sets/lists/base/md.sparc64: patch
distrib/sets/lists/base/shl.mi: revision 1.798 via patch
distrib/sets/lists/debug/ad.aarch64: patch
distrib/sets/lists/debug/ad.arm: patch
distrib/sets/lists/debug/ad.mips: patch
distrib/sets/lists/debug/ad.powerpc: patch
distrib/sets/lists/debug/md.amd64: patch
distrib/sets/lists/debug/md.sparc64: patch
distrib/sets/lists/debug/shl.mi: revision 1.157 via patch
external/bsd/dhcp/Makefile.inc: revision 1.17
libexec/telnetd/Makefile: revision 1.50
usr.bin/passwd/Makefile: revision 1.45
usr.bin/telnet/Makefile: revision 1.51
usr.sbin/racoon/Makefile: revision 1.28
Update Heimdal to 7.1, fixing CVE-2016-2400.
 1.44.16.1 21-Apr-2017  bouyer Sync with HEAD
 1.44.12.1 20-Mar-2017  pgoyette Sync with HEAD
 1.44.10.1 20-Aug-2017  snj Pull up following revision(s) (requested by mrg in ticket #1493):
crypto/external/bsd/heimdal/Makefile.rules.inc: up to 1.8
crypto/external/bsd/heimdal/bin/Makefile.inc: up to 1.3
crypto/external/bsd/heimdal/bin/kcc/Makefile: up to 1.3
crypto/external/bsd/heimdal/dist/LICENSE: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/NEWS: up to 1.2
crypto/external/bsd/heimdal/dist/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/README.fast: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/admin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/admin/add.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/change.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/get.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/ktutil-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/admin/ktutil.1: up to 1.2
crypto/external/bsd/heimdal/dist/admin/ktutil.8 delete
crypto/external/bsd/heimdal/dist/admin/ktutil.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/list.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/purge.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/remove.c: up to 1.2
crypto/external/bsd/heimdal/dist/admin/rename.c: up to 1.2
crypto/external/bsd/heimdal/dist/appveyor.yml: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/autogen.sh: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/base/Makefile.am delete
crypto/external/bsd/heimdal/dist/base/NTMakefile delete
crypto/external/bsd/heimdal/dist/base/array.c delete
crypto/external/bsd/heimdal/dist/base/baselocl.h delete
crypto/external/bsd/heimdal/dist/base/bool.c delete
crypto/external/bsd/heimdal/dist/base/dict.c delete
crypto/external/bsd/heimdal/dist/base/heimbase.c delete
crypto/external/bsd/heimdal/dist/base/heimbase.h delete
crypto/external/bsd/heimdal/dist/base/heimbasepriv.h delete
crypto/external/bsd/heimdal/dist/base/heimqueue.h delete
crypto/external/bsd/heimdal/dist/base/json.c delete
crypto/external/bsd/heimdal/dist/base/null.c delete
crypto/external/bsd/heimdal/dist/base/number.c delete
crypto/external/bsd/heimdal/dist/base/roken_rename.h delete
crypto/external/bsd/heimdal/dist/base/string.c delete
crypto/external/bsd/heimdal/dist/base/test_base.c delete
crypto/external/bsd/heimdal/dist/base/version-script.map delete
crypto/external/bsd/heimdal/dist/cf/Makefile.am.common: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/check-compile-et.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/check-x.m4 delete
crypto/external/bsd/heimdal/dist/cf/check-xau.m4 delete
crypto/external/bsd/heimdal/dist/cf/crypto.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/db.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/dispatch.m4: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/dlopen.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/find-func-no-libs2.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/install-catman.sh: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/krb-ipv6.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/krb-prog-perl.m4: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/cf/make-proto.pl: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/maybe-valgrind.sh: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/misc.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/proto-compat.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/pthreads.m4: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/cf/retsigtype.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/roken-frag.m4: up to 1.2
crypto/external/bsd/heimdal/dist/cf/roken-h-process.pl: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/cf/sunos.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/test-package.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/valgrind-suppressions: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/version-script.m4: up to 1.2
crypto/external/bsd/heimdal/dist/cf/wflags.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/cf/with-all.m4: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/configure.ac: up to 1.2
crypto/external/bsd/heimdal/dist/doc/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/doc/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/doc/ack.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/base.din: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/doc/base.hhp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/doc/copyright.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/doxytmpl.dxy: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/doc/heimdal.hhp: up to 1.2
crypto/external/bsd/heimdal/dist/doc/hx509.hhp: up to 1.2
crypto/external/bsd/heimdal/dist/doc/migration.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/oid.txt delete
crypto/external/bsd/heimdal/dist/doc/setup.texi: up to 1.2
crypto/external/bsd/heimdal/dist/doc/vars.tin: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/include/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/include/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/include/bits.c: up to 1.2
crypto/external/bsd/heimdal/dist/include/config.h.w32: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/include/crypto-headers.h: up to 1.2
crypto/external/bsd/heimdal/dist/include/hcrypto/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/include/heim_threads.h: up to 1.2
crypto/external/bsd/heimdal/dist/include/krb5-types.cross: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kadmin/add-random-users.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/add_enctype.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/ank.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/check.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/cpw.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/del_enctype.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/dump.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/get.c: up to 1.4
crypto/external/bsd/heimdal/dist/kadmin/init.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadm_conn.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/kadmin/kadmin.1: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin.8 delete
crypto/external/bsd/heimdal/dist/kadmin/kadmin.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmin_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/kadmind.8: up to 1.5
crypto/external/bsd/heimdal/dist/kadmin/kadmind.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/load.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/mod.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/rpc.c: up to 1.3
crypto/external/bsd/heimdal/dist/kadmin/server.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/stash.c: up to 1.2
crypto/external/bsd/heimdal/dist/kadmin/util.c: up to 1.4
crypto/external/bsd/heimdal/dist/kcm/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kcm/acquire.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/cache.c: up to 1.3
crypto/external/bsd/heimdal/dist/kcm/client.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/events.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/kcm.8: up to 1.5
crypto/external/bsd/heimdal/dist/kcm/kcm_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/main.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/protocol.c: up to 1.2
crypto/external/bsd/heimdal/dist/kcm/renew.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kdc/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kdc/config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/connect.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/default_config.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/digest-service.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/digest.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/fast.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/headers.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hprop.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hprop.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/hpropd.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc-replay.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc-tester.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc.8: up to 1.5
crypto/external/bsd/heimdal/dist/kdc/kdc.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kdc_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kerberos5.c: up to 1.7
crypto/external/bsd/heimdal/dist/kdc/krb5tgs.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kstash.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/kx509.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/main.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/misc.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/mit_dump.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/pkinit-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/pkinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/process.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/string2key.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/windc.c: up to 1.2
crypto/external/bsd/heimdal/dist/kdc/windc_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd-generator.c: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd.c: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswd_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kpasswd/kpasswdd.c: up to 1.4
crypto/external/bsd/heimdal/dist/krb5.conf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kuser/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/kuser/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/kuser/copy_cred_cache.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/generate-requests.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/heimtools-commands.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/kuser/heimtools-version.rc: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/kuser/heimtools.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kcc-commands.in delete
crypto/external/bsd/heimdal/dist/kuser/kcc-version.rc delete
crypto/external/bsd/heimdal/dist/kuser/kcc.c delete
crypto/external/bsd/heimdal/dist/kuser/kcpytkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdecode_ticket.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdeltkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdigest.8: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kdigest.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kgetcred.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kgetcred.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kimpersonate.8: up to 1.5
crypto/external/bsd/heimdal/dist/kuser/kimpersonate.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kinit.1: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/klist.c: up to 1.4
crypto/external/bsd/heimdal/dist/kuser/kswitch.1: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kswitch.c: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kuser_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/kuser/kverify.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/45/NTMakefile delete
crypto/external/bsd/heimdal/dist/lib/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1-template.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1_gen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1_print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/asn1parse.y: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-ber.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-der.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-gen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/check-timegm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_cmp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_format.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_get.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_length.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/der_put.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/digest.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/extra.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/fuzzer.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/asn1/gen_copy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_decode.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_encode.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_length.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_locl.h: up to 1.3
crypto/external/bsd/heimdal/dist/lib/asn1/gen_seq.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/gen_template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/hash.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/krb5.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/lex.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/lex.l: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/libasn1-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/asn1/main.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/asn1/pkinit.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/asn1/pku2u.asn1: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/asn1/rfc2459.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/roken_rename.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/symbol.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/symbol.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/template.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/asn1/test.asn1: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/asn1/test.opt: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/asn1/timegm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/Makefile.am: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/base/NTMakefile: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/base/array.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/baselocl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/bool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/bsearch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/data.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/db.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/dict.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/dll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbase.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbase.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimbasepriv.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/heimqueue.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/json.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/number.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/roken_rename.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/string.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/test_base.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/base/version-script.map: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/com_err/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/com_err/com_err.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/com_err.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/com_right.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/compile_et.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/com_err/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/com_err/lex.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gen-oid.pl: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gss-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/gss_acquire_cred.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi/gssapi.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi/gssapi_krb5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gssapi_mech.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/gsstool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/8003.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/aeap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/authorize_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/cfx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/copy_ccache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/decapsulate.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/export_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/get_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/gsskrb5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/import_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/import_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/init_sec_context.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_cred_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/pname_to_uid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/set_sec_context_option.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/test_cfx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/unwrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/verify_mic.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/libgssapi-exports.def: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/compat.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred_ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_acquire_cred_with_password.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_add_cred_with_password.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_aeap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_authorize_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_delete_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_display_status.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_get_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_import_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_indicate_mechs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_cred_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_mech_switch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_mo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_pname_to_uid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_unwrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_verify_mic.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_wrap_size_limit.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gssapi.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/accept_sec_context.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/acquire_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/add_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/canonicalize_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/compare_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/display_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/duplicate_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/export_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/init_sec_context.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_cred.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_cred_by_mech.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/netlogon/inquire_mechs_for_name.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/acquire_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/add_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/canonicalize_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/compare_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/context_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/creds.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/display_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/duplicate_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/export_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_cred_by_mech.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_mechs_for_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/inquire_sec_context_by_oid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/kdc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/process_context_token.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/oid.txt: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/accept_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/compat.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/context_stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/cred_stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/external.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/init_sec_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_add_store_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_context.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/test_ntlm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/gssapi/version-script.map: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/aes.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/bn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/bn.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/camellia-ntt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/camellia.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/destest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh-ltm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh-tfm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dh.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dllmain.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/dsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/dsa.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ec.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/engine.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/engine.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-cc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-cc.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-crypt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-hcrypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-openssl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-openssl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-pkcs11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-pkcs11.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-w32.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-wincng.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp-wincng.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/evp.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/example_evp_cipher.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/hash.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/hmac.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libhcrypto-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_find_prime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_isprime.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_mod.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_prime_next_prime.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/bn_mp_shrink.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/etc/timer.asm: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/gen.pl: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/logs/README: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/pics/makefile: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/pretty.build: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/tommath.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/tommath_class.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md2.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/hcrypto/md2.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md4.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md4.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/md5crypt_test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/mdtest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/passwd_dlg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/pkcs12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/pkcs5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-egd.c delete
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-fortuna.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-timer.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-unix.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand-w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rand.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/randi.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc2test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rc4.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rctest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rijndael-alg-fst.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rnd_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-gmp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-ltm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa-tfm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/rsa.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha256.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/sha512.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_bn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_bulk.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_cipher.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_crypto.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_dh.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_engine_dso.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_hmac.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_pkcs12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_pkcs5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/test_rsa.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/ui.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/undef.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/validate.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hcrypto/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/hdb/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/db.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/db3.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/dbinfo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-ldap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-mdb.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-mitdb.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb-sqlite.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.asn1: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.schema: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hdb/hdb_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/keys.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hdb/keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/libhdb-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hdb/mkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_dbinfo.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_hdbkeys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_hdbplugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/test_mkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hdb/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/heimdal/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/heimdal/dllmain.c delete
crypto/external/bsd/heimdal/dist/lib/hx509/ChangeLog: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ca.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/cert.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hx509/cms.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/crypto-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/data/mkcert.sh: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/openssl.cnf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r1TestCA.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestClient.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.cert.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.key.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp160r2TestServer.pem delete
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r1TestCA.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestClient.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.cert.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.key.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/data/secp256r2TestServer.pem: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/hx509/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/env.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hx509.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hx509_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/hx_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/hxtool-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/hxtool.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/keyset.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_dir.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_keychain.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_p11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ks_p12.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/libhx509-exports.def: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/lock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/ref/pkcs11.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/revoke.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/hx509/sel-lex.l: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/softp11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/test_ca.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_cert.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_chain.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_cms.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_name.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/test_nist_pkcs12.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/hx509/test_soft_pkcs11.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/hx509/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ipc/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ipc/client.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/heim-ipc.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/server.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/tc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/ts-http.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ipc/ts.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/kadm5/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/acl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ad.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/kadm5/admin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/bump_pw_expire.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/chpass_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/chpass_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/client_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/common_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/context_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/create_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/create_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/default_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/delete_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/delete_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/destroy_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/destroy_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ent_setup.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/flush.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/flush_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/flush_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/free.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_princs_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_princs_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/get_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/init_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/init_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-commands.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-log.8: up to 1.6
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop-log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop.8: up to 1.5
crypto/external/bsd/heimdal/dist/lib/kadm5/iprop.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_master.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/ipropd_slave.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/kadm5_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kadm5/kadm5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/libkadm5srv-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/marshall.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/modify_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/modify_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/password_quality.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/private.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/privs_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/privs_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/randkey_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/randkey_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/rename_c.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/rename_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/send_recv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/server_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/set_keys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/set_modifier.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/setkey3_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/test_pw_quality.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kadm5/version-script-client.map: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/kadm5/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/kafs/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/kafs/afskrb5.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/afssys.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/kafs.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/kafs_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kafs/rxkad_kdf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/kdfs/k5dfspag.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/krb5/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/acache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/acl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/addr_families.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/aes-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/an2ln_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/aname_to_localname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/asn1_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/auth_context.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/build_auth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/cache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/changepw.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/config_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/config_reg.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/constants.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/context.c: up to 1.6
crypto/external/bsd/heimdal/dist/lib/krb5/copy_host_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes-sha1.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes-sha2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-aes.c delete
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-algs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des-common.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-des3.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-evp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-null.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-pk.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto-stubs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/crypto.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/data.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/db_plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/db_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/dcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/deprecated.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/derived-key-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/digest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/dll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/doxygen.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/enomem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/error_string.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/expand_hostname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/expand_path.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/fast.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/fcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/generate_subkey.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_addrs.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_principal.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_for_creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_host_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/get_in_tkt.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/heim_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/init_creds.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/init_creds_pw.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kcm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kerberos.8: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keyblock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_any.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_file.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_keyfile.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/keytab_memory.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5-plugin.7: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5.conf.5: up to 1.6
crypto/external/bsd/heimdal/dist/lib/krb5/krb5.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_auth_context.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_c_make_checksum.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_digest.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_err.et: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_get_creds.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_get_init_creds.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_locl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_parse_name.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_principal.3: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_set_default_realm.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/krb5_timeofday.3: up to 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/krbhst.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/libkrb5-exports.def.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/krb5/locate_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/log.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/misc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mit_glue.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_error.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_priv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_rep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/mk_req_ext.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/n-fold-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/n-fold.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/net_read.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pac.c: up to 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/padata.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pcache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pkinit-ec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pkinit.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/principal.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/pseudo-random-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_cred.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_priv.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_rep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_req.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/rd_safe.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/recvauth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/replay.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes-sha1.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes-sha2.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-aes.c delete
crypto/external/bsd/heimdal/dist/lib/krb5/salt-arcfour.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-des.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt-des3.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/salt.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/scache.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc.c: up to 1.7
crypto/external/bsd/heimdal/dist/lib/krb5/send_to_kdc_plugin.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/sendauth.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/set_default_realm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/sp800-108-kdf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store-int.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store-int.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_emem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_fd.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_mem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/store_sock.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/string-to-key-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_alname.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_canon.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_cc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_crypto.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_crypto_wrapping.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_expand_toks.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_fx.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_kuserok.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_pknistkdf.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/test_plugin.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_rfc3961.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_set_kvno0.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_store.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/test_time.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/ticket.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/transited.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_init.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_krb5_conf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/verify_user.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/krb5/version-script.map: up to 1.4
crypto/external/bsd/heimdal/dist/lib/krb5/warn.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/ntlm/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/apop.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/digest.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/heim-auth.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/heimntlm.h: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/ntlm.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/ntlm_err.et: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/ntlm/test_commonauth.c: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/ntlm/test_ntlm.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/otp/otp.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otp_challenge.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otp_db.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otp_parse.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otp_print.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otp_verify.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/otp/otptest.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ChangeLog: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/roken/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/base64.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/bswap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/cloexec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ct.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/daemon.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/detach.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dirent.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dlfcn.hin: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/roken/dlfcn_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/dumpdata.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/err.hin: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getarg.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getarg.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/roken/getcap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/getxxyyy.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/glob.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/hex-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/issuid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/memset_s.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/mkdir.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/ndbm_wrap.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_bytes-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_time-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/parse_time.3: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rand.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/realloc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/resolve-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/resolve.c: up to 1.5
crypto/external/bsd/heimdal/dist/lib/roken/rkpty.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/roken-common.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/roken.awk: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/roken/roken.h.in: up to 1.4
crypto/external/bsd/heimdal/dist/lib/roken/roken_gethostby.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rtbl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/rtbl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/simple_exec.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/simple_exec_w32.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/sleep.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/snprintf-test.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/snprintf.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/socket.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/stdint.hin: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/lib/roken/strtoll.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/strtoull.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/test-detach.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/test-mem.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/tsearch.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/version-script.map: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/roken/win32_alloc.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/roken/write_pid.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/sl/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/sl/sl.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/sl.h: up to 1.2
crypto/external/bsd/heimdal/dist/lib/sl/slc-gram.y: up to 1.2
crypto/external/bsd/heimdal/dist/lib/vers/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/lib/vers/print_version.c: up to 1.4
crypto/external/bsd/heimdal/dist/lib/wind/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/wind/bidi.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/combining.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/errorlist.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/gen-bidi.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-combining.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-errorlist.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/gen-normalize.py: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/lib/wind/libwind-exports.def: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/lib/wind/map.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/normalize.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-normalize.c: up to 1.2
crypto/external/bsd/heimdal/dist/lib/wind/test-utf8.c: up to 1.2
crypto/external/bsd/heimdal/dist/packages/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/packages/mac/Resources/English.lproj/Welcome.rtf: up to 1.2
crypto/external/bsd/heimdal/dist/packages/mac/mac.sh: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/packages/windows/NTMakefile: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/assembly/Heimdal.Kerberos.manifest.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/packages/windows/assembly/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/assembly/policy.Heimdal.Kerberos.in: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/NTMakefile: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-assemblies.wxs: up to 1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-command.wxs: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-gss.wxs: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-installer.wxs: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/packages/windows/installer/heimdal-policy.wxs: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_banner.bmp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_banner.png: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_dialog.bmp: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/installer/images/Heimdal_dialog.png: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/packages/windows/sdk/NTMakefile: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/po/heimdal_krb5/heimdal_krb5.pot: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/po/heimdal_krb5/sv_SE.po: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/bin/Makefile.am: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/bin/intr.c: up to 1.2
crypto/external/bsd/heimdal/dist/tests/bin/setup-env.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/can/check-can.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/mit-pkinit-20070607.xf: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/can/test_can.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/db/add-modify-delete.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/check-aliases.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/check-dbinfo.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/db/have-db.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/db/krb5-mit.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/krb5.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/db/loaddump-db.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/gss/check-basic.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-context.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-gssmask.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-ntlm.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/gss/check-spnego.in: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/gss/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/java/check-kinit.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/jaas.conf: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/java/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/Makefile.am: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/an2ln-db.txt: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-authz.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-canon.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-cc.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-delegation.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-des.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-digest.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-fast.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-hdb-mitdb.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-iprop.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-kadmin.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-kdc.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-kinit.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-kpasswdd.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-pkinit.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/check-referral.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/check-tester.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/check-uu.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb.kadm5: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/hdb-mitdb.mkey: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/heimdal.acl: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/k5login/foo: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester1.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester2.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester3.json: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/kdc-tester4.json.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-authz.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-authz2.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-canon.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-canon2.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-hdb-mitdb.conf.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tests/kdc/krb5-pkinit.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/krb5.conf.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/krb5.conf.keys.in: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/kdc/leaks-kill.sh: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/kdc/wait-kdc.sh: up to 1.2
crypto/external/bsd/heimdal/dist/tests/ldap/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/ldap/check-ldap.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/slapd-init.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/ldap/slapd.conf: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/tests/plugin/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tests/plugin/check-pac.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/plugin/krb5.conf.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tests/plugin/windc.c: up to 1.2
crypto/external/bsd/heimdal/dist/tools/Makefile.am: up to 1.1.1.4
crypto/external/bsd/heimdal/dist/tools/heimdal-gssapi.pc.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tools/heimdal-kadm-client.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/heimdal-kadm-server.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/heimdal-krb5.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kadm-client.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kadm-server.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/kafs.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/krb5-config.1: up to 1.2
crypto/external/bsd/heimdal/dist/tools/krb5-config.in: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/tools/krb5-gssapi.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/tools/krb5.pc.in: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/windows/NTMakefile.config: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/windows/NTMakefile.version: up to 1.1.1.2
crypto/external/bsd/heimdal/dist/windows/NTMakefile.w32: up to 1.1.1.3
crypto/external/bsd/heimdal/dist/windows/README delete
crypto/external/bsd/heimdal/dist/windows/README.md: up to 1.1.1.1
crypto/external/bsd/heimdal/dist/windows/maint.el delete
crypto/external/bsd/heimdal/dist/windows/version.rc: up to 1.1.1.2
crypto/external/bsd/heimdal/heimdal2netbsd: up to 1.8
crypto/external/bsd/heimdal/include/config.h: up to 1.8
crypto/external/bsd/heimdal/include/der-private.h: up to 1.2
crypto/external/bsd/heimdal/include/der-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/gsskrb5-private.h: up to 1.3
crypto/external/bsd/heimdal/include/hdb-private.h: up to 1.2
crypto/external/bsd/heimdal/include/hdb-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/heimntlm-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/hx509-private.h: up to 1.3
crypto/external/bsd/heimdal/include/hx509-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kadm5-private.h: up to 1.2
crypto/external/bsd/heimdal/include/kadm5-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kcm-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/kdc-private.h: up to 1.3
crypto/external/bsd/heimdal/include/kdc-protos.h: up to 1.2
crypto/external/bsd/heimdal/include/krb5-private.h: up to 1.3
crypto/external/bsd/heimdal/include/krb5-protos.h: up to 1.4
crypto/external/bsd/heimdal/include/krb5-types.h: up to 1.7
crypto/external/bsd/heimdal/include/ntlm-private.h: up to 1.3
crypto/external/bsd/heimdal/include/roken.h: up to 1.7
crypto/external/bsd/heimdal/include/spnego-private.h: up to 1.2
crypto/external/bsd/heimdal/include/version.h: up to 1.3
crypto/external/bsd/heimdal/lib/libasn1/Makefile: up to 1.5
crypto/external/bsd/heimdal/lib/libasn1/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libcom_err/compile_et/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libcom_err/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libgssapi/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libhdb/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libhdb/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libheimbase/Makefile: up to 1.2
crypto/external/bsd/heimdal/lib/libheimbase/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libheimntlm/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libhx509/Makefile: up to 1.5
crypto/external/bsd/heimdal/lib/libhx509/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkadm5clnt/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkadm5srv/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libkadm5srv/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkafs/Makefile: up to 1.3
crypto/external/bsd/heimdal/lib/libkafs/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkdc/Makefile: up to 1.3
crypto/external/bsd/heimdal/lib/libkdc/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libkrb5/Makefile: up to 1.11
crypto/external/bsd/heimdal/lib/libkrb5/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libroken/Makefile: up to 1.2
crypto/external/bsd/heimdal/lib/libroken/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libsl/shlib_version: up to 1.2
crypto/external/bsd/heimdal/lib/libsl/slc/Makefile: up to 1.4
crypto/external/bsd/heimdal/lib/libwind/shlib_version: up to 1.2
crypto/external/bsd/heimdal/libexec/Makefile.inc: up to 1.5
crypto/external/bsd/heimdal/sbin/Makefile.inc: up to 1.4
crypto/external/bsd/heimdal/sbin/kadmin/Makefile: up to 1.3
crypto/external/bsd/heimdal/sbin/ktutil/Makefile: up to 1.3
crypto/external/bsd/openssh/bin/ssh/Makefile: revision 1.11
crypto/external/bsd/openssh/bin/sshd/Makefile: revision 1.15
distrib/sets/lists/base/ad.aarch64: patch
distrib/sets/lists/base/ad.arm: patch
distrib/sets/lists/base/ad.mips: patch
distrib/sets/lists/base/ad.powerpc: patch
distrib/sets/lists/base/md.amd64: patch
distrib/sets/lists/base/md.sparc64: patch
distrib/sets/lists/base/shl.mi: revision 1.798 via patch
distrib/sets/lists/debug/ad.aarch64: patch
distrib/sets/lists/debug/ad.arm: patch
distrib/sets/lists/debug/ad.mips: patch
distrib/sets/lists/debug/ad.powerpc: patch
distrib/sets/lists/debug/md.amd64: patch
distrib/sets/lists/debug/md.sparc64: patch
distrib/sets/lists/debug/shl.mi: revision 1.157 via patch
external/bsd/dhcp/Makefile.inc: revision 1.17
libexec/telnetd/Makefile: revision 1.50
usr.bin/passwd/Makefile: revision 1.45
usr.bin/telnet/Makefile: revision 1.51
usr.sbin/racoon/Makefile: revision 1.28
Update Heimdal to 7.1, fixing CVE-2016-2400.
 1.44.8.1 21-Aug-2017  snj Pull up following revision(s) (requested by mrg in ticket #1493):
crypto/external/bsd/openssh/bin/ssh/Makefile: revision 1.11
usr.bin/passwd/Makefile: revision 1.45
external/bsd/dhcp/Makefile.inc: revision 1.17
crypto/external/bsd/openssh/bin/sshd/Makefile: revision 1.15
usr.bin/telnet/Makefile: revision 1.51
usr.sbin/racoon/Makefile: revision 1.28
libexec/telnetd/Makefile: revision 1.50
krb5 needs sqlite3 now
kerberos needs sqlite3
add sqlite3
add sqlite3
add sqlite3
add sqlite3
 1.15 03-Sep-2016  sevan Remove K&R __P macros.
Remove main() function prototype if present.
Mark usage() as __dead if not already.
Binaries generated with & without these patches were compared with diff -r.
 1.14 16-Sep-2011  joerg Use __dead
 1.13 23-Mar-2006  wiz Get rid of more Kerberos 4 code.
 1.12 26-Feb-2005  thorpej Magor rework of passwd(1) for the PAM case. Add "-d <database>" option,
similar to Solaris's "-r <repository" or Mac OS X's "-i <infosystem>",
to select the password database (files, nis, krb5). Otherwise, we default
to using whatever PAM decides.
 1.11 22-Feb-2005  christos Add a PAM passwd module.
XXX: This avoids the issue of supporting separate -l -y -k, but is the behavior
correct? Should passwd -p disable all other passwd methods? Should it become
the default if compiled in?
 1.10 11-Jan-2005  christos use pw_gensalt() and don't dig into libcrypt.
 1.9 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22365, verified by myself.
 1.8 06-Jul-2000  ad Declare pwd_gensalt().
 1.7 14-Feb-2000  aidan branches: 1.7.4;
Modularize password changing mechanisms, as proposed in
<20000130122641.A8134@xanadu.kublai.com>:
Subject: PROPOSAL: making passwd pluggable (sort of)
Date: Sun, 30 Jan 2000 12:26:41 -0500
 1.6 26-Jan-2000  aidan Separate kerberos5 implementation from kerberos4.
 1.5 19-Oct-1997  lukem WARNSify, fix .Nm usage
 1.4 07-Jan-1997  tls remove vestigal Berkeley kpasswdd support
 1.3 05-Jan-1997  thorpej Fix RCS ID, and clean up extra newline at end of file.
 1.2 28-Dec-1996  tls Sync with 4.4BSD-Lite2 (whew!)
 1.1 27-Dec-1996  tls branches: 1.1.1;
Initial revision
 1.1.1.1 27-Dec-1996  tls Import of 4.4BSD-Lite2 sources
 1.7.4.1 26-Feb-2002  he Pull up revision 1.8 (requested by jonathan):
Add support for local MD5-encrypted passwords.
 1.3 30-Apr-2008  martin Convert TNF licenses to new 2 clause variant
 1.2 28-Feb-2005  wiz branches: 1.2.26;
infomration -> information.
 1.1 26-Feb-2005  thorpej Magor rework of passwd(1) for the PAM case. Add "-d <database>" option,
similar to Solaris's "-r <repository" or Mac OS X's "-i <infosystem>",
to select the password database (files, nis, krb5). Otherwise, we default
to using whatever PAM decides.
 1.2.26.1 18-May-2008  yamt sync with head.
 1.4 07-Jan-1997  tls remove vestigal Berkeley kpasswdd support
 1.3 28-Dec-1996  tls Sync with 4.4BSD-Lite2 (whew!)
 1.2 09-Aug-1996  thorpej Slight semantics change: ALWAYS use YP if the system is bound to a
YP server. This is required if the passwd database is to stay in sync
if this program is run on the YP server. Note, local passwd database
operations can still be performed by passing the -l flag.

Also, some minor cleanup and RCS id police.
 1.1 27-Jul-1994  brezak branches: 1.1.1; 1.1.2;
Add conditional kerberosIV and kerberos5 support
 1.1.2.2 27-Jul-1994  brezak Add conditional kerberosIV and kerberos5 support
 1.1.2.1 27-Jul-1994  brezak file kpasswd_proto.h was added on branch netbsd-1-0 on 1994-07-27 03:28:15 +0000
 1.1.1.1 27-Dec-1996  tls Import of 4.4BSD-Lite2 sources
 1.20 22-Apr-2012  christos - fix non pam build
- merge duplicated error code
- fix opt struct leak
 1.19 24-Apr-2011  elric branches: 1.19.4; 1.19.6;
Stop using functions deprecated by Heimdal. Also, if krb5_init_context()
fails, we can't use Kerberos functions to grab error strings, we
resort to strerror(3) which is what Heimdal's deprecated function
does in this case.
 1.18 18-Apr-2009  mlelstv avoid compiler warnings about shadowed declarations.
 1.17 28-Apr-2008  martin branches: 1.17.8;
Remove clause 3 and 4 from TNF licenses
 1.16 21-Apr-2008  veego Apply the change in rev 1.15 also to the non PAM code.
 1.15 22-Mar-2008  mlelstv branches: 1.15.2;
Import Heimdal-1.1
 1.14 25-Jan-2008  christos minor lint
 1.13 26-Feb-2005  thorpej branches: 1.13.18;
Magor rework of passwd(1) for the PAM case. Add "-d <database>" option,
similar to Solaris's "-r <repository" or Mac OS X's "-i <infosystem>",
to select the password database (files, nis, krb5). Otherwise, we default
to using whatever PAM decides.
 1.12 05-Oct-2004  lha Switch to krb5_set_password that can handle the RFC3244 (and the older
change password protocol)
 1.11 24-Jul-2003  itojun branches: 1.11.4;
upgrade openssl to 0.9.7b. (AES is now supported)
alter des.h to be friendly with openssl/des.h (you can include both in the
same file)
make libkrb to depend on libdes. bump major.
massage various portioin of heimdal to be friendly with openssl 0.9.7b.
 1.10 18-Nov-2000  fvdl In krb5_end, don't try to free the krb5 context if it's not yet
been initialized. Fixes coredump when passwd is called as 'yppasswd'.
 1.9 06-Jul-2000  ad - Pull in pwd.h since `struct passwd' is now used in extern.h.
- Use pwd_gensalt().
 1.8 20-Jun-2000  thorpej branches: 1.8.2; 1.8.4;
Merge a bunch of things from crypto-us and crypto-intl into basesrc,
adding support for Heimdal/KTH Kerberos where easy to do so. Eliminate
bsd.crypto.mk.

There is still a bunch more work to do, but crypto is now more-or-less
fully merged into the base NetBSD distribution.
 1.7 14-Feb-2000  aidan Modularize password changing mechanisms, as proposed in
<20000130122641.A8134@xanadu.kublai.com>:
Subject: PROPOSAL: making passwd pluggable (sort of)
Date: Sun, 30 Jan 2000 12:26:41 -0500
 1.6 06-Jul-1998  mrg - use an array MAXHOSTNAMELEN+1 size to hold hostnames
- ensure hostname from gethostname() is nul-terminated in all cases
- minor KNF
- use MAXHOSTNAMELEN over various other values/defines
- be safe will buffers that hold hostnames
 1.5 19-Oct-1997  lukem WARNSify, fix .Nm usage
 1.4 11-Feb-1997  mrg remove dangerous sprintf and strcpy calls.
 1.3 07-Jan-1997  tls remove vestigal Berkeley kpasswdd support
 1.2 09-Aug-1996  thorpej Slight semantics change: ALWAYS use YP if the system is bound to a
YP server. This is required if the passwd database is to stay in sync
if this program is run on the YP server. Note, local passwd database
operations can still be performed by passing the -l flag.

Also, some minor cleanup and RCS id police.
 1.1 27-Jul-1994  brezak branches: 1.1.2;
Add conditional kerberosIV and kerberos5 support
 1.1.2.2 27-Jul-1994  brezak Add conditional kerberosIV and kerberos5 support
 1.1.2.1 27-Jul-1994  brezak file krb5_passwd.c was added on branch netbsd-1-0 on 1994-07-27 03:28:17 +0000
 1.8.4.2 23-Jun-2000  minoura Sync w/ netbsd-1-5-base.
 1.8.4.1 20-Jun-2000  minoura file krb5_passwd.c was added on branch minoura-xpg4dl on 2000-06-23 16:39:51 +0000
 1.8.2.3 26-Feb-2002  he Pull up revision 1.9 (requested by jonathan):
Add support for local MD5-encrypted passwords.
 1.8.2.2 15-Dec-2000  he Pull up revision 1.10 (requested by fvdl):
Don't try to free an uninitialized context; fixes core dump when
called as ``yppasswd''.
 1.8.2.1 20-Jun-2000  he file krb5_passwd.c was added on branch netbsd-1-5 on 2000-12-15 00:11:53 +0000
 1.11.4.1 16-Jan-2005  he Pull up revision 1.12 (requested by lha in ticket #917):
Switch to krb5_set_password that can handle the RFC3244 (as
well as the older change password protocol). Should enable
changing password in a Windows2000 (or later) domain.
 1.13.18.1 23-Mar-2008  matt sync with HEAD
 1.15.2.1 18-May-2008  yamt sync with head.
 1.17.8.1 13-May-2009  jym Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
 1.19.6.1 07-May-2012  riz Pull up following revision(s) (requested by christos in ticket #231):
usr.bin/passwd/krb5_passwd.c: revision 1.20
- fix non pam build
- merge duplicated error code
- fix opt struct leak
 1.19.4.1 23-May-2012  yamt sync with head.
 1.4 07-Jan-1997  tls remove vestigal Berkeley kpasswdd support
 1.3 28-Dec-1996  tls Sync with 4.4BSD-Lite2 (whew!)
 1.2 09-Aug-1996  thorpej Slight semantics change: ALWAYS use YP if the system is bound to a
YP server. This is required if the passwd database is to stay in sync
if this program is run on the YP server. Note, local passwd database
operations can still be performed by passing the -l flag.

Also, some minor cleanup and RCS id police.
 1.1 27-Jul-1994  brezak branches: 1.1.1; 1.1.2;
Add conditional kerberosIV and kerberos5 support
 1.1.2.2 27-Jul-1994  brezak Add conditional kerberosIV and kerberos5 support
 1.1.2.1 27-Jul-1994  brezak file krb_passwd.c was added on branch netbsd-1-0 on 1994-07-27 03:28:20 +0000
 1.1.1.1 27-Dec-1996  tls Import of 4.4BSD-Lite2 sources
 1.37 18-May-2024  andvar s/Aborb/Absorb/ in comment.
 1.36 25-Mar-2012  dholland fix non-PAM build
 1.35 31-Aug-2011  plunky branches: 1.35.2;
NULL does not need a cast
 1.34 02-Mar-2010  gdt Log successful and unsuccessful attempts to change passwords, via -l
or pam, to ease IT audit guideline compliance. Patch from Richard
Hansen of BBN in private mail.

Proposed on tech-kern with positive comments, except a suggestion I
didn't implement:

A possible future enhancement is refraining from logging if the old
password is empty, as some people abort password changing that way.
However, it's not clear if this complies with most guidelines that
require password change logging, and at first glance that appears to
be a fairly difficult change.
 1.33 17-Apr-2009  dyoung Rename variables to fix GCC warnings: local variables optopt and optarg
shadow globals.
 1.32 12-Apr-2009  lukem Fix WARNS=4 issues
 1.31 25-Jan-2008  christos branches: 1.31.10; 1.31.12;
minor lint
 1.30 26-Feb-2005  thorpej branches: 1.30.18;
Magor rework of passwd(1) for the PAM case. Add "-d <database>" option,
similar to Solaris's "-r <repository" or Mac OS X's "-i <infosystem>",
to select the password database (files, nis, krb5). Otherwise, we default
to using whatever PAM decides.
 1.29 12-Jan-2005  christos adapt to pw_gensalt() changes.
 1.28 11-Jan-2005  christos use pw_gensalt() and don't dig into libcrypt.
 1.27 30-Oct-2004  dsl Add (unsigned char) cast to ctype functions
A password containg 80...ff could be reported (incorrectly) as being
all lower case.
 1.26 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22365, verified by myself.
 1.25 16-Nov-2002  itojun use strlcpy
 1.24 18-Aug-2001  ad Slight change to previous: rebuild the insecure password db if the expiry
time has changed, not just been set.
 1.23 18-Aug-2001  ad Update for pw_mkdb() change: restrict updates to one user's records and/or
the secure database where appropriate.
 1.22 09-Oct-2000  ad Back out previous.
 1.21 21-Sep-2000  ad When not running as the super-user: if the user's password has expired or is
due to expire within _PASSWORD_WARNDAYS (or the setting from login.conf),
force the user to set a different password than the one they are currently
using. (Yes, it's actually worthwhile doing this.)
 1.20 06-Jul-2000  ad - Pull in pwd.h since `struct passwd' is now used in extern.h.
- Use pwd_gensalt().
 1.19 14-Feb-2000  aidan branches: 1.19.4;
Modularize password changing mechanisms, as proposed in
<20000130122641.A8134@xanadu.kublai.com>:
Subject: PROPOSAL: making passwd pluggable (sort of)
Date: Sun, 30 Jan 2000 12:26:41 -0500
 1.18 12-Jan-2000  mjl Wrap login.conf database access in ifdef LOGIN_CAP.
 1.17 12-Jan-2000  mjl Changes to passwd(1) for login.conf. Supported capabilities are
minpasswordlen and passwordtime (expiry time).
 1.16 11-Jul-1998  mrg KNF. ensure buffers are nul-terminated.
 1.15 02-Apr-1998  kleink Need <time.h> for time() prototype.
 1.14 19-Oct-1997  lukem WARNSify, fix .Nm usage
 1.13 24-Jul-1997  phil Changes to close PR3806. (Different than in PR.)
-- don't lock passwd until data is collected.
-- save a copy of original pw data for pw_copy checking
-- Try several times to lock passwd
 1.12 22-Feb-1997  thorpej Tidy up printf formats in "don't use all lower case" warning
message. From Dave Huang <khym@bga.com>, PR #3198.
 1.11 11-Feb-1997  mrg remove dangerous sprintf and strcpy calls.
 1.10 28-Dec-1996  tls Sync with 4.4BSD-Lite2 (whew!)
 1.9 09-Aug-1996  thorpej Slight semantics change: ALWAYS use YP if the system is bound to a
YP server. This is required if the passwd database is to stay in sync
if this program is run on the YP server. Note, local passwd database
operations can still be performed by passing the -l flag.

Also, some minor cleanup and RCS id police.
 1.8 15-May-1996  jtc Updated to use new password file functions in libutil.
From Greg Hudson <ghudson@MIT.EDU>.
 1.7 24-Dec-1994  cgd needs string.h
 1.6 05-Jan-1994  deraadt rationalize & cleanup -y/-k/-l code
update man page for -y
yp password setting now works again!
relax passwd setting retry code a teeny bit
 1.5 01-Aug-1993  mycroft Add RCS identifiers.
 1.4 07-Jul-1993  brezak Return status instead of exiting.
 1.3 26-Apr-1993  cgd changed to use new libcrypt scheme.
 1.2 09-Apr-1993  proven Fixed problem where users with a blank password field can't change their
password.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.2 27-Dec-1996  tls Import of 4.4BSD-Lite2 sources
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.19.4.1 26-Feb-2002  he Pull up revision 1.20 (requested by jonathan):
Add support for local MD5-encrypted passwords.
 1.30.18.1 23-Mar-2008  matt sync with HEAD
 1.31.12.1 13-May-2009  jym Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
 1.31.10.1 20-Nov-2010  riz Pull up following revision(s) (requested by gdt in ticket #1360):
usr.bin/passwd/pam_passwd.c: revision 1.5
usr.bin/passwd/local_passwd.c: revision 1.34
Log successful and unsuccessful attempts to change passwords, via -l
or pam, to ease IT audit guideline compliance. Patch from Richard
Hansen of BBN in private mail.
Proposed on tech-kern with positive comments, except a suggestion I
didn't implement:
A possible future enhancement is refraining from logging if the old
password is empty, as some people abort password changing that way.
However, it's not clear if this complies with most guidelines that
require password change logging, and at first glance that appears to
be a fairly difficult change.
 1.35.2.1 17-Apr-2012  yamt sync with head
 1.7 10-Sep-2021  rillig usr.bin: remove unnecessary lint comment CONSTCOND

Since 2021-01-31, lint no longer warns about 'do ... while (0)'.

No functional change.
 1.6 09-Mar-2010  joerg Do not call pam_end with an invalid handle if pam_start failed.
From Richard Hansen.
 1.5 02-Mar-2010  gdt Log successful and unsuccessful attempts to change passwords, via -l
or pam, to ease IT audit guideline compliance. Patch from Richard
Hansen of BBN in private mail.

Proposed on tech-kern with positive comments, except a suggestion I
didn't implement:

A possible future enhancement is refraining from logging if the old
password is empty, as some people abort password changing that way.
However, it's not clear if this complies with most guidelines that
require password change logging, and at first glance that appears to
be a fairly difficult change.
 1.4 06-May-2007  jnemeth branches: 1.4.18; 1.4.24;
Display a message indicating who's password is being changed, as per
Jeremy Reed on tech-userlevel.
 1.3 26-Feb-2005  thorpej branches: 1.3.2; 1.3.4; 1.3.10; 1.3.12;
Magor rework of passwd(1) for the PAM case. Add "-d <database>" option,
similar to Solaris's "-r <repository" or Mac OS X's "-i <infosystem>",
to select the password database (files, nis, krb5). Otherwise, we default
to using whatever PAM decides.
 1.2 24-Feb-2005  thorpej Add missing RCS ID.
 1.1 22-Feb-2005  christos Add a PAM passwd module.
XXX: This avoids the issue of supporting separate -l -y -k, but is the behavior
correct? Should passwd -p disable all other passwd methods? Should it become
the default if compiled in?
 1.3.12.1 08-May-2007  pavel Pull up following revision(s) (requested by jnemeth in ticket #626):
usr.bin/passwd/pam_passwd.c: revision 1.4
Display a message indicating who's password is being changed, as per
Jeremy Reed on tech-userlevel.
 1.3.10.1 08-May-2007  ghen Pull up following revision(s) (requested by jnemeth in ticket #1776):
usr.bin/passwd/pam_passwd.c: revision 1.4
Display a message indicating who's password is being changed, as per
Jeremy Reed on tech-userlevel.
 1.3.4.1 08-May-2007  ghen Pull up following revision(s) (requested by jnemeth in ticket #1776):
usr.bin/passwd/pam_passwd.c: revision 1.4
Display a message indicating who's password is being changed, as per
Jeremy Reed on tech-userlevel.
 1.3.2.1 08-May-2007  ghen Pull up following revision(s) (requested by jnemeth in ticket #1776):
usr.bin/passwd/pam_passwd.c: revision 1.4
Display a message indicating who's password is being changed, as per
Jeremy Reed on tech-userlevel.
 1.4.24.1 21-Apr-2010  matt sync to netbsd-5
 1.4.18.2 20-Nov-2010  riz Pull up following revision(s) (requested by gdt in ticket #1360):
usr.bin/passwd/pam_passwd.c: revision 1.5
usr.bin/passwd/local_passwd.c: revision 1.34
Log successful and unsuccessful attempts to change passwords, via -l
or pam, to ease IT audit guideline compliance. Patch from Richard
Hansen of BBN in private mail.
Proposed on tech-kern with positive comments, except a suggestion I
didn't implement:
A possible future enhancement is refraining from logging if the old
password is empty, as some people abort password changing that way.
However, it's not clear if this complies with most guidelines that
require password change logging, and at first glance that appears to
be a fairly difficult change.
 1.4.18.1 17-Mar-2010  snj Pull up following revision(s) (requested by joerg in ticket #1333):
usr.bin/passwd/pam_passwd.c: revision 1.6
Do not call pam_end with an invalid handle if pam_start failed.
From Richard Hansen.
 1.28 07-Mar-2006  hubertf Xref pwhash(1),
pointed out by Stefan Schumacher at the Chemnitz Linuxdays
 1.27 28-Feb-2005  wiz YP password -> NIS password. Ok'd by thorpej.
 1.26 28-Feb-2005  thorpej user -> principal in the krb5 synopsis.
 1.25 28-Feb-2005  thorpej Fix a typo, and sort SEE ALSO correctly.
 1.24 26-Feb-2005  thorpej Magor rework of passwd(1) for the PAM case. Add "-d <database>" option,
similar to Solaris's "-r <repository" or Mac OS X's "-i <infosystem>",
to select the password database (files, nis, krb5). Otherwise, we default
to using whatever PAM decides.
 1.23 22-Feb-2005  wiz Drop some whitespace
XXX: -p not described.
 1.22 22-Feb-2005  christos Add a PAM passwd module.
XXX: This avoids the issue of supporting separate -l -y -k, but is the behavior
correct? Should passwd -p disable all other passwd methods? Should it become
the default if compiled in?
 1.21 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22365, verified by myself.
 1.20 05-Apr-2003  lha Document when Kerberos will be used.
fixes part of bin/14988
 1.19 30-Sep-2002  grant New sentence, new line.
 1.18 01-Dec-2001  wiz Whitespace cleanup.
 1.17 09-Oct-2000  ad Back out previous.
 1.16 21-Sep-2000  ad Document new behaviour WRT password expiry, and Xr login.conf.
 1.15 11-Jul-2000  ad English.
 1.14 06-Jul-2000  ad Adapt to addition of passwd.conf.
 1.13 14-Feb-2000  aidan branches: 1.13.4;
Modularize password changing mechanisms, as proposed in
<20000130122641.A8134@xanadu.kublai.com>:
Subject: PROPOSAL: making passwd pluggable (sort of)
Date: Sun, 30 Jan 2000 12:26:41 -0500
 1.12 22-Mar-1999  garbled More and more .Os cleanups. .Os is defined in the tmac.doc-common file,
so we shouldn't override it with versions in the manpages. Many more to
come.
 1.11 21-Nov-1997  tv Added test to allow fallback to local password database if YP passwd map
is not found. Fixes both PRs 4142 and 4557 (4558). Still fails properly
if user is in YP and not in local database. Man page fixed to reflect
current logic behind falling back, changed since YP was made default some
time ago.
 1.10 11-Nov-1997  mrg add missing .Nm sections.
 1.9 19-Oct-1997  lukem branches: 1.9.2;
WARNSify, fix .Nm usage
 1.8 07-Jan-1997  tls remove vestigal Berkeley kpasswdd support
 1.7 28-Dec-1996  tls Sync with 4.4BSD-Lite2 (whew!)
 1.6 09-Aug-1996  thorpej Slight semantics change: ALWAYS use YP if the system is bound to a
YP server. This is required if the passwd database is to stay in sync
if this program is run on the YP server. Note, local passwd database
operations can still be performed by passing the -l flag.

Also, some minor cleanup and RCS id police.
 1.5 12-Feb-1995  phil Make passwd work with a link to yppasswd. (From Jason Thorpe)
 1.4 11-Jan-1994  jtc Fix spelling errors.
 1.3 05-Jan-1994  deraadt rationalize & cleanup -y/-k/-l code
update man page for -y
yp password setting now works again!
relax passwd setting retry code a teeny bit
 1.2 01-Aug-1993  mycroft Add RCS indentifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.2 27-Dec-1996  tls Import of 4.4BSD-Lite2 sources
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.9.2.1 11-Nov-1997  mrg pull up from trunk: add missing .Nm sections.
 1.13.4.1 26-Feb-2002  he Pull up revision 1.14 (requested by jonathan):
Add support for local MD5-encrypted passwords.
 1.32 12-Oct-2017  ryo fix compile error without USE_PAM (-Werror,-Wmissing-noreturn)
 1.31 03-Sep-2016  sevan Remove K&R __P macros.
Remove main() function prototype if present.
Mark usage() as __dead if not already.
Binaries generated with & without these patches were compared with diff -r.
 1.30 17-Apr-2009  dyoung Rename variables to fix GCC warnings: local variables optopt and optarg
shadow globals.
 1.29 12-Apr-2009  lukem Fix WARNS=4 issues
 1.28 21-Jul-2008  lukem branches: 1.28.6;
Remove the \n and tabs from the __COPYRIGHT() strings.
Tweak to use a consistent format.
 1.27 25-Jan-2008  christos branches: 1.27.6;
minor lint
 1.26 23-Mar-2006  wiz branches: 1.26.12;
Get rid of more Kerberos 4 code.
 1.25 26-Feb-2005  thorpej Magor rework of passwd(1) for the PAM case. Add "-d <database>" option,
similar to Solaris's "-r <repository" or Mac OS X's "-i <infosystem>",
to select the password database (files, nis, krb5). Otherwise, we default
to using whatever PAM decides.
 1.24 22-Feb-2005  christos Add a PAM passwd module.
XXX: This avoids the issue of supporting separate -l -y -k, but is the behavior
correct? Should passwd -p disable all other passwd methods? Should it become
the default if compiled in?
 1.23 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22365, verified by myself.
 1.22 28-Mar-2001  simonb 80 column police.
 1.21 19-Feb-2001  cgd convert to use getprogname()
 1.20 06-Jul-2000  ad - Pull in pwd.h since `struct passwd' is now used in extern.h.
- Use pwd_gensalt().
 1.19 03-Jul-2000  matt Make gcc 2.96 (and maybe earlier) happier. Include <stdlib.h>,<string.>,
etc. as appropriate to get exit,srncmp,abs,abort,etc.
Add -I${.CURDIR} to a few Makefiles
 1.18 14-Apr-2000  simonb branches: 1.18.4;
Don't declare 'extern opt*' getopt variables.
 1.17 01-Mar-2000  joda use NULL
 1.16 14-Feb-2000  aidan Modularize password changing mechanisms, as proposed in
<20000130122641.A8134@xanadu.kublai.com>:
Subject: PROPOSAL: making passwd pluggable (sort of)
Date: Sun, 30 Jan 2000 12:26:41 -0500
 1.15 26-Jan-2000  aidan Separate kerberos5 implementation from kerberos4.
 1.14 26-Aug-1999  marc it doesn't make any sense to use -u with -r or -i, so don't permit it.
 1.13 11-Jul-1998  mrg KNF. ensure buffers are nul-terminated.
 1.12 19-Oct-1997  lukem WARNSify, fix .Nm usage
 1.11 07-Jan-1997  tls remove vestigal Berkeley kpasswdd support
 1.10 28-Dec-1996  tls Sync with 4.4BSD-Lite2 (whew!)
 1.9 26-Nov-1996  thorpej Fix a semantic problem reported by Chuck Cranor:

If a user wishes to change a password on a system running YP, and
the master server is not running rpc.yppasswdd, passwd(1) would fail,
even if the user had a local entry. Fix this by checking for local
entry if master is not running rpc.yppasswd iff we defaulted to using
YP (not invoked as "yppasswd" or with "-y").
 1.8 09-Aug-1996  thorpej Slight semantics change: ALWAYS use YP if the system is bound to a
YP server. This is required if the passwd database is to stay in sync
if this program is run on the YP server. Note, local passwd database
operations can still be performed by passing the -l flag.

Also, some minor cleanup and RCS id police.
 1.7 12-Feb-1995  phil Make passwd work with a link to yppasswd. (From Jason Thorpe)
 1.6 27-Jul-1994  brezak branches: 1.6.2;
Add conditional kerberosIV and kerberos5 support
 1.5 05-Jan-1994  deraadt rationalize & cleanup -y/-k/-l code
update man page for -y
yp password setting now works again!
relax passwd setting retry code a teeny bit
 1.4 01-Aug-1993  mycroft Add RCS identifiers.
 1.3 07-Jul-1993  brezak Change NIS--> YP
 1.2 11-Jun-1993  brezak Add YP support.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.2 27-Dec-1996  tls Import of 4.4BSD-Lite2 sources
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.6.2.2 27-Jul-1994  brezak Add conditional kerberosIV and kerberos5 support
 1.6.2.1 27-Jul-1994  brezak file passwd.c was added on branch netbsd-1-0 on 1994-07-27 03:28:24 +0000
 1.18.4.1 26-Feb-2002  he Pull up revision 1.20 (requested by jonathan):
Add support for local MD5-encrypted passwords.
 1.26.12.1 23-Mar-2008  matt sync with HEAD
 1.27.6.1 18-Sep-2008  wrstuden Sync with wrstuden-revivesa-base-2.
 1.28.6.1 13-May-2009  jym Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
 1.12 12-Jan-2005  christos gc unused file.
 1.11 02-Jul-2004  sjg Add support for SHA1 hashed passwords.
The algorithm used is essentially PBKDF1 from RFC 2898 but using
hmac_sha1 rather than SHA1 directly (suggested by smb@research.att.com).

* The format of the encrypted password is:
* $<tag>$<iterations>$<salt>$<digest>
*
* where:
* <tag> is "sha1"
* <iterations> is an unsigned int identifying how many rounds
* have been applied to <digest>. The number
* should vary slightly for each password to make
* it harder to generate a dictionary of
* pre-computed hashes. See crypt_sha1_iterations.
* <salt> up to 64 bytes of random data, 8 bytes is
* currently considered more than enough.
* <digest> the hashed password.

hmac.c implementes HMAC as defined in RFC 2104 and includes a unit
test for both hmac_sha1 and hmac_sha1 using a selection of the Known
Answer Tests from RFC 2202.

It is worth noting that to be FIPS compliant the hmac key (password)
should be 10-20 chars.
 1.10 14-Jul-2003  itojun use bounded string op
 1.9 16-Nov-2002  itojun use strlcpy
 1.8 01-Oct-2002  provos password hashing utility that allows des, md5 or bcrypt passwords to be
created in scripts; tool originally from downsj@openbsd.org;
approved by perry.
 1.7 28-May-2002  itojun use arc4random
 1.6 24-May-2002  itojun support bcrypt password. can be chosen by "blowfish" keyword in passwd.conf.
from openbsd
 1.5 09-Oct-2000  ad branches: 1.5.2; 1.5.4;
Fix warning message.
 1.4 18-Sep-2000  ad - sizeof(), not constants.
- snprintf() will always terminate the output string.
- Spacing.
 1.3 03-Aug-2000  ad __RCSID().
 1.2 06-Jul-2000  ad Use ':' as group prefix; suggested by hubertf.
 1.1 06-Jul-2000  ad Add pwd_gensalt() - generates password salt/setting for crypt(), based upon
target user and information obtained from passwd.conf. From OpenBSD.
 1.5.4.1 26-Mar-2004  jmc Pullup rev 1.6 (requested by provos in ticket #1386)

Introduce bcrypt password scheme. Adds the arc4random API for creating
cryptographically strong random numbers.
 1.5.2.2 26-Feb-2002  he Pull up revisions 1.1-1.5 (requested by jonathan):
Add support for local MD5-encrypted passwords.
 1.5.2.1 09-Oct-2000  he file pwd_gensalt.c was added on branch netbsd-1-5 on 2002-02-26 22:09:42 +0000
 1.38 18-May-2024  andvar s/Abosrb/Absorb/ in comment.
 1.37 25-Mar-2012  dholland fix non-PAM build
 1.36 16-Sep-2011  joerg branches: 1.36.2;
Use __dead
 1.35 08-Sep-2010  christos KNF, make error messages consistent.
 1.34 08-Sep-2010  christos PR/43852: Wolfgang Stukenbrock: yp_passwd command may destroy NIS database
entries when used on a server that includes users via netgroups.
 1.33 12-Apr-2009  lukem Fix WARNS=4 issues
 1.32 25-Jan-2008  christos branches: 1.32.10; 1.32.12;
PR/37863: Wolfgang Stukenbrock: yp_passwd command may destroy NIS database entries when used on a server that includes users via netgroups
 1.31 26-Feb-2005  thorpej branches: 1.31.18;
Magor rework of passwd(1) for the PAM case. Add "-d <database>" option,
similar to Solaris's "-r <repository" or Mac OS X's "-i <infosystem>",
to select the password database (files, nis, krb5). Otherwise, we default
to using whatever PAM decides.
 1.30 12-Jan-2005  christos adapt to pw_gensalt() changes.
 1.29 11-Jan-2005  christos use pw_gensalt() and don't dig into libcrypt.
 1.28 30-Oct-2004  dsl Add (unsigned char) cast to ctype functions
A password containg 80...ff could be reported (incorrectly) as being
all lower case.
 1.27 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22365, verified by myself.
 1.26 16-Nov-2002  itojun error handling on strdup failure
 1.25 16-Nov-2002  itojun use strlcpy
 1.24 13-Feb-2001  cgd __progname not used here, so don't extern it
 1.23 06-Jul-2000  ad - Pull in pwd.h since `struct passwd' is now used in extern.h.
- Use pwd_gensalt().
 1.22 14-Feb-2000  aidan branches: 1.22.4;
Modularize password changing mechanisms, as proposed in
<20000130122641.A8134@xanadu.kublai.com>:
Subject: PROPOSAL: making passwd pluggable (sort of)
Date: Sun, 30 Jan 2000 12:26:41 -0500
 1.21 23-Dec-1999  mjl Fix yppasswd part of passwd. This has never worked since the
password map was split and master.passwd.byname was introduced.

XXX This is a temporary fix until luke finds some time to add
the necessary support glue to libc for TRT.
 1.20 16-Aug-1999  simonb Spell "privilege" correctly (correct spelling from Jonathan Stone).
 1.19 26-Jul-1998  mycroft branches: 1.19.2;
const poisoning.
 1.18 12-Jul-1998  mrg avoid print extra : as noted by Benjamin Lorenz <lorenz@ps.uni-sb.de> in bin/5745
 1.17 11-Jul-1998  mrg KNF. ensure buffers are nul-terminated.
 1.16 21-Nov-1997  tv Added test to allow fallback to local password database if YP passwd map
is not found. Fixes both PRs 4142 and 4557 (4558). Still fails properly
if user is in YP and not in local database. Man page fixed to reflect
current logic behind falling back, changed since YP was made default some
time ago.
 1.15 19-Oct-1997  lukem branches: 1.15.2;
WARNSify, fix .Nm usage
 1.14 21-May-1997  lukem * free up data after a failed yp_match()
* simplify a two case switch into an if statement...
* remove use of register
 1.13 22-Feb-1997  thorpej Tidy up printf formats in "don't use all lower case" warning
message. From Dave Huang <khym@bga.com>, PR #3198.
 1.12 11-Feb-1997  mrg remove dangerous sprintf and strcpy calls.
 1.11 28-Dec-1996  tls Sync with 4.4BSD-Lite2 (whew!)
 1.10 26-Nov-1996  thorpej Fix a semantic problem reported by Chuck Cranor:

If a user wishes to change a password on a system running YP, and
the master server is not running rpc.yppasswdd, passwd(1) would fail,
even if the user had a local entry. Fix this by checking for local
entry if master is not running rpc.yppasswd iff we defaulted to using
YP (not invoked as "yppasswd" or with "-y").
 1.9 09-Aug-1996  thorpej Slight semantics change: ALWAYS use YP if the system is bound to a
YP server. This is required if the passwd database is to stay in sync
if this program is run on the YP server. Note, local passwd database
operations can still be performed by passing the -l flag.

Also, some minor cleanup and RCS id police.
 1.8 08-Feb-1995  phil Fix bug bin/789 with my fix.
 1.7 15-Jan-1995  phil Fix the bug that stopped a user from changing his yp passwd when
the entry was ::. (Also allows root to change the empty password.)
 1.6 17-Aug-1994  deraadt branches: 1.6.2;
pr#416
 1.5 13-Jan-1994  deraadt branches: 1.5.2;
few minor things, one pointed out by <kuku@acds.physik.rwth-aachen.de>
 1.4 05-Jan-1994  deraadt rationalize & cleanup -y/-k/-l code
update man page for -y
yp password setting now works again!
relax passwd setting retry code a teeny bit
 1.3 01-Aug-1993  mycroft Add RCS identifiers.
 1.2 07-Jul-1993  brezak Change NIS--> YP
 1.1 11-Jun-1993  brezak Add YP support.
 1.5.2.1 17-Aug-1994  mycroft update from trunk
 1.6.2.2 17-Aug-1994  deraadt pr#416
 1.6.2.1 17-Aug-1994  deraadt file yp_passwd.c was added on branch netbsd-1-0 on 1994-08-17 06:06:43 +0000
 1.15.2.1 26-Nov-1997  mellon Pull rev 1.16 up from trunk (tv)
 1.19.2.1 08-Oct-2000  he Apply patch (requested by phil):
Make this program actually able to change the YP password.
 1.22.4.1 26-Feb-2002  he Pull up revision 1.23 (requested by jonathan):
Add support for local MD5-encrypted passwords.
 1.31.18.1 23-Mar-2008  matt sync with HEAD
 1.32.12.1 13-May-2009  jym Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
 1.32.10.1 22-Nov-2010  riz Pull up following revision(s) (requested by dholland in ticket #1476):
usr.bin/passwd/yp_passwd.c: revision 1.34
PR/43852: Wolfgang Stukenbrock: yp_passwd command may destroy NIS database
entries when used on a server that includes users via netgroups.
 1.36.2.1 17-Apr-2012  yamt sync with head
 1.3 30-Apr-2008  martin Convert TNF licenses to new 2 clause variant
 1.2 28-Feb-2005  wiz branches: 1.2.26;
infomration -> information.
 1.1 26-Feb-2005  thorpej Magor rework of passwd(1) for the PAM case. Add "-d <database>" option,
similar to Solaris's "-r <repository" or Mac OS X's "-i <infosystem>",
to select the password database (files, nis, krb5). Otherwise, we default
to using whatever PAM decides.
 1.2.26.1 18-May-2008  yamt sync with head.

RSS XML Feed