Home | History | Annotate | only in /src/usr.bin/telnet
History log of /src/usr.bin/telnet
RevisionDateAuthorComments
 1.61 03-Jun-2023  lukem adapt to ${CC_WNO_IMPLICIT_FALLTHROUGH}

Use ${CC_WNO_IMPLICIT_FALLTHROUGH} instead of
the older style more complex expressions.
 1.60 03-Jun-2023  lukem bsd.own.mk: rename GCC_NO_* to CC_WNO_*

Rename compiler-warning-disable variables from
GCC_NO_warning
to
CC_WNO_warning
where warning is the full warning name as used by the compiler.

GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH

Using the convention CC_compilerflag, where compilerflag
is based on the full compiler flag name.
 1.59 13-Oct-2019  mrg introduce some common variables for use in GCC warning disables:

GCC_NO_FORMAT_TRUNCATION -Wno-format-truncation (GCC 7/8)
GCC_NO_STRINGOP_TRUNCATION -Wno-stringop-truncation (GCC 8)
GCC_NO_STRINGOP_OVERFLOW -Wno-stringop-overflow (GCC 8)
GCC_NO_CAST_FUNCTION_TYPE -Wno-cast-function-type (GCC 8)

use these to turn off warnings for most GCC-8 complaints. many
of these are false positives, most of the real bugs are already
commited, or are yet to come.


we plan to introduce versions of (some?) of these that use the
"-Wno-error=" form, which still displays the warnings but does
not make it an error, and all of the above will be re-considered
as either being "fix me" (warning still displayed) or "warning
is wrong."
 1.58 29-Sep-2019  mrg convert HAVE_GCC == 7 to HAVE_GCC >= 7.
 1.57 04-Feb-2019  mrg apply -Wno-error=implicit-fallthrough on files that have fallthru
comments but are missed by the current checker.
 1.56 05-Jan-2019  maya Bump WARNS to 5, and remove unnecessary -Wno (tested with pkgsrc clang 7)
 1.55 05-Jan-2019  maya Remove advertising clause, permitted by the copyright author.
 1.54 13-Dec-2018  maya unifdef TN3270 which is never defined (and wouldn't build if it was)
delete tn3270 file no longer needed.
SetIn3270(); expands to nothing now, so remove it.

No functional change.
 1.53 25-Feb-2018  mrg branches: 1.53.2; 1.53.4;
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.52 21-May-2017  riastradh Remove MKCRYPTO option.

Originally, MKCRYPTO was introduced because the United States
classified cryptography as a munition and restricted its export. The
export controls were substantially relaxed fifteen years ago, and are
essentially irrelevant for software with published source code.

In the intervening time, nobody bothered to remove the option after
its motivation -- the US export restriction -- was eliminated. I'm
not aware of any other operating system that has a similar option; I
expect it is mainly out of apathy for churn that we still have it.
Today, cryptography is an essential part of modern computing -- you
can't use the internet responsibly without cryptography.

The position of the TNF board of directors is that TNF makes no
representation that MKCRYPTO=no satisfies any country's cryptography
regulations.

My personal position is that the availability of cryptography is a
basic human right; that any local laws restricting it to a privileged
few are fundamentally immoral; and that it is wrong for developers to
spend effort crippling cryptography to work around such laws.

As proposed on tech-crypto, tech-security, and tech-userlevel to no
objections:

https://mail-index.netbsd.org/tech-crypto/2017/05/06/msg000719.html
https://mail-index.netbsd.org/tech-security/2017/05/06/msg000928.html
https://mail-index.netbsd.org/tech-userlevel/2017/05/06/msg010547.html

P.S. Reviewing all the uses of MKCRYPTO in src revealed a lot of
*bad* crypto that was conditional on it, e.g. DES in telnet... That
should probably be removed too, but on the grounds that it is bad,
not on the grounds that it is (nominally) crypto.
 1.51 28-Jan-2017  christos add sqlite3
 1.50 10-Aug-2012  joerg branches: 1.50.10; 1.50.12; 1.50.14; 1.50.18; 1.50.20;
Remove many HAVE_GCC || HAVE_PCC conditionals as the options also apply
to Clang. Add a few cases of HAVE_LLVM for -fno-strict-aliasing.
 1.49 09-Jan-2012  christos branches: 1.49.2; 1.49.6; 1.49.8;
PR/45805: Borodin Oleg: telnet/telnetd with -DAUTHENTICATION -DENCRYPTION
(rfc2941)
- Minimal diffs to separate MKCRYPTO from USE_KERBEROS
 1.48 05-Oct-2011  roy branches: 1.48.2;
Use terminfo and the non-standard ttytype rather than termcap.
 1.47 20-Jun-2011  mrg remove most of the remaining HAVE_GCC tests that are always true in
the modern world.
 1.46 26-May-2011  joerg branches: 1.46.2;
Default to -Wno-sign-compare -Wno-pointer-sign for clang.
Push -Wno-array-bounds down to the cases that depend on it.
Selectively disable warnings for 3rd party software or non-trivial
issues to be reviewed later to get clang -Werror to build most of the
tree.
 1.45 24-Apr-2011  elric We no longer need -I/usr/include/krb5.
 1.44 03-Feb-2010  roy Userland now builds and uses terminfo instead of termcap.

OK: core@, jdc@
 1.43 14-Apr-2009  lukem Enable WARNS=4 by default for usr.bin, except for:
awk bdes checknr compile_et error gss hxtool kgetcred kinit
klist ldd less lex locale login m4 man menuc mk_cmds
mklocale msgc openssl rpcgen rpcinfo sdiff spell ssh
string2key telnet tn3270 verify_krb5_conf xlint
 1.42 29-Aug-2008  gmcgarry branches: 1.42.6;
Wrap compiler-specific flags with HAVE_GCC and HAVE_PCC as necessary. Add a few flags for PCC.
 1.41 28-May-2007  tls branches: 1.41.12;
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 11-May-2006  mrg sprinkle some -fno-strict-aliasing and -Wno-pointer-sign with GCC4.
 1.39 20-Mar-2006  christos Goodbye KerberosIV
 1.38 04-Mar-2005  he Add -lcrypt to link lines for applications using -lkrb5, so that they
link successfully when MKPIC=no, as is always the case for our ports
which do not support shared libraries.

Discussed with thorpej and christos.
 1.37 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.36 19-Feb-2005  christos Make this compile if pam is present. XXX: this sucks, because we don't
really use PAM here, but libtelnet needs it.
 1.35 10-Jan-2005  lukem Only compile in IPv6 support if ${USE_INET6} != "no"

MKINET6 is for providing IPv6 infrastructure.
USE_INET6 is for compiling IPv6 support into the programs (needs MKINET6).
 1.34 22-Dec-2004  lha Move linking with libdes to the common kerberos section since
libtelnet depends on the old des functions.

From Jukka Salmi in NetBSD pr misc/28727
 1.33 13-Dec-2003  chs rearrange lib stuff so that these link on non-shared-lib platforms.
 1.32 11-Dec-2003  dyoung Fix the checkflist for builds without Kerberos 4 (MKKERBEROS4=no)
and without Kerberos 4 & 5 (MKKERBEROS=no). Previously checkflist
complained of missing files.

* move kerberos- and kerberos 4-only files into new flists,
distrib/sets/lists/*/krb.*

* make the flist generators grok MKKERBEROS{,4} variables

* fix Makefiles which treat MKKERBEROS=no as MKKERBEROS5=no.
9 out of 10 experts agree that it is ludicrous to build w/
KERBEROS4 and w/o KERBEROS5.

* fix header files, also, which treat MKKERBEROS=no as MKKERBEROS5=no.

* omit some Kerberos-only subdirectories from the build as
MKKERBEROS{,4} indicate

(I acknowledge the sentiment that flists are the wrong way to go,
and that the makefiles should produce the metalog directly. That
sounds to me like the right way to go, but I am not prepared to do
revamp all the makefiles. While my approach is expedient, it fits
painlessly within the current build architecture until we are
delivered from flist purgatory, and it does not postpone our
delivery. Fair enough?)
 1.31 05-Aug-2003  lha libkrb depend on libdes
libkrb5 depends on libasn1 and libcrypto
 1.30 23-Jul-2003  itojun split MKKERBEROS4 from MKKERBEROS. based on work by lha at stacken.kth.se
(build confirmed with both MKKERBEROS4=yes and MKKERBEROS4=no)
 1.29 16-Jul-2003  itojun stop installing install libtelnet. build under lib/libtelnet and reference
it from usr.bin/telnet and libexec/telnetd.
(reason for separate build: compiler flags)
 1.28 14-Jul-2003  itojun remove unneeded #ifdef. (confirmed that same *.o is generated)
 1.27 18-Sep-2002  lukem makefile delint. use NETBSDSRCDIR as appropriate
 1.26 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.25 03-Aug-2000  assar forced: previous was really: remove libvers, it's not being used
 1.24 03-Aug-2000  assar link against the not-installed libvers
 1.23 03-Aug-2000  assar update build infrastructure for heimdal 0.3a
 1.22 23-Jun-2000  thorpej Add MK... variables to enable/disable various aspects of building
crypto support into the system. See share/mk/bsd.README for more
a full description.
 1.21 22-Jun-2000  thorpej Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.20 20-Jun-2000  thorpej branches: 1.20.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.19 20-Jul-1999  mrg branches: 1.19.6;
optionally include CRYPTOPATH Makefile.frag files.
 1.18 12-Jul-1999  thorpej Use bsd.crypto.mk.
 1.17 02-Jul-1999  itojun IPv6-ready telnet.
source route (telnet @localhost@localhost) works for IPv6 as well.
 1.16 07-Jun-1999  thorpej Treat crypto-us like domestic.
 1.15 03-Jan-1999  cjs Descend on obj, as well as clean, etc.
 1.14 05-Sep-1998  lukem distclean is a synonym for cleandir
 1.13 27-Jul-1998  scottr Ack! I misunderstood a problem reported to me. We don't need to do
anything special to handle obj directories; bsd.man.mk does it for us
already. Back out that part of the previos commit.
 1.12 27-Jul-1998  scottr Fix two problems with my previous change:

- We must include bsd.own.mk to get EXPORTABLE_SYSTEM from mk.conf.
Noted by Bernd Ernesti.
- If we're only generating man pages, we should deal with obj
directories as appropriate. Both Perry Metzger and I found this
independently.

This completes the tasks necessary to close PR 5519.
 1.11 22-Jul-1998  scottr Unlike other domestic bits, telnet and telnetd are never built as a part
of the domestic build process. No domestic program actually builds its
own man pages but instead relies on those built in the exportable tree.
The result is missing telnet(1) and telnet(8) pages.

Fix this problem descending into the telnet and telnetd directories
regardless of whether we're doing an exportable build or not. Once there,
we generate only the man pages if we're building a non-exportable system.
 1.10 27-Feb-1998  christos WARNSify and fix problems passing int * -> long *
 1.9 24-Oct-1997  lukem use CPPFLAGS instead of CFLAGS
 1.8 20-Oct-1997  lukem branches: 1.8.2;
WARNS=0 for now (3rdparty product)
 1.7 24-Mar-1997  christos - Makefile cleanups
 1.6 28-Feb-1996  thorpej RCS id cosmetics.
 1.5 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.4 24-Apr-1995  cgd define 'unix'
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 30-Jul-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.8.2.1 08-Nov-1997  lukem sync with trunk (approved by thorpej)
 1.19.6.1 23-Jun-2000  minoura Sync w/ netbsd-1-5-base.
 1.20.2.3 24-Jun-2000  thorpej Update from trunk:
Add MK... variables to enable/disable various aspects of building
crypto support into the system. See share/mk/bsd.README for more
a full description.
 1.20.2.2 22-Jun-2000  thorpej Update from trunk:
Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.20.2.1 20-Jun-2000  thorpej file Makefile was added on branch netbsd-1-5 on 2000-06-22 07:09:05 +0000
 1.41.12.1 18-Sep-2008  wrstuden Sync with wrstuden-revivesa-base-2.
 1.42.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.46.2.1 23-Jun-2011  cherry Catchup with rmind-uvmplock merge.
 1.48.2.2 30-Oct-2012  yamt sync with head
 1.48.2.1 17-Apr-2012  yamt sync with head
 1.49.8.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.49.6.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.49.2.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.50.20.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.50.18.1 21-Apr-2017  bouyer Sync with HEAD
 1.50.14.1 20-Mar-2017  pgoyette Sync with HEAD
 1.50.12.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.50.10.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.53.4.2 13-Apr-2020  martin Mostly merge changes from HEAD upto 20200411
 1.53.4.1 10-Jun-2019  christos Sync with HEAD
 1.53.2.2 18-Jan-2019  pgoyette Synch with HEAD
 1.53.2.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.6 15-Dec-2018  maya Remove README relevant to 1995 telnet.
 1.5 11-Feb-2002  wiz branches: 1.5.98; 1.5.100;
Lots of typos.
 1.4 22-Jul-2001  wiz seperate -> separate
 1.3 11-Jun-2001  wiz Fix various misspellings of compatible/compatibility.
 1.2 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.5.100.1 10-Jun-2019  christos Sync with HEAD
 1.5.98.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.14 14-Dec-2018  christos minor cleanup:
- more const
- prevent overflow of the argument vector
- change a lot of unsigned to signed to eliminate casts
 1.13 09-Jan-2012  christos branches: 1.13.38; 1.13.40;
PR/45805: Borodin Oleg: telnet/telnetd with -DAUTHENTICATION -DENCRYPTION
(rfc2941)
- Minimal diffs to separate MKCRYPTO from USE_KERBEROS
 1.12 07-Aug-2003  agc branches: 1.12.56;
Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22365, verified by myself.
 1.11 12-Jul-2003  itojun strlcpy
 1.10 18-Jun-2003  christos Ansify.
 1.9 22-Jun-2000  thorpej Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.8 01-Feb-2000  assar branches: 1.8.4;
(net_write): rename to telnet_net_write
 1.7 06-Nov-1998  christos - synchronize with the domestic version
- setupterm -> setup_term
- char -> unsigned char
 1.6 27-Feb-1998  christos WARNSify and fix problems passing int * -> long *
 1.5 28-Feb-1996  thorpej RCS id cosmetics.
 1.4 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.8.4.1 22-Jun-2000  thorpej Update from trunk:
Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.12.56.1 17-Apr-2012  yamt sync with head
 1.13.40.1 10-Jun-2019  christos Sync with HEAD
 1.13.38.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.80 08-Jul-2022  mlelstv Prevent crashes as shown in PR 56918.
 1.79 09-Jan-2021  christos preserve errno because we are doing system calls between error printing
and error setting.
 1.78 09-Jan-2021  christos restore perror -> warn (reported by Havard Eidnes)
 1.77 04-Oct-2019  mrg use memmove() instead of strncpy() for overlapping strings.
ensure nul termination.
 1.76 05-Jan-2019  maya Match the function prototype of encrypthandler instead of casting to it.
Make GCC 9 snapshot happier with the code

While here, remove unnecessary braces around return (KNF).
 1.75 05-Jan-2019  maya unifdef compatibility for old BSD servers. This has been
disabled, so no binary change. from openbsd.
 1.74 05-Jan-2019  maya Avoid unnecessary casts, from openbsd. No binary change.
 1.73 14-Dec-2018  christos minor cleanup:
- more const
- prevent overflow of the argument vector
- change a lot of unsigned to signed to eliminate casts
 1.72 14-Dec-2018  maya G/C In3270 - always false
 1.71 13-Dec-2018  maya unifdef TN3270 which is never defined (and wouldn't build if it was)
delete tn3270 file no longer needed.
SetIn3270(); expands to nothing now, so remove it.

No functional change.
 1.70 04-Oct-2016  joerg branches: 1.70.12; 1.70.14;
GC header left from earlier diagnostic test.
 1.69 04-Oct-2016  joerg Remove source routing support.
 1.68 09-Jan-2012  christos branches: 1.68.22;
PR/45805: Borodin Oleg: telnet/telnetd with -DAUTHENTICATION -DENCRYPTION
(rfc2941)
- Minimal diffs to separate MKCRYPTO from USE_KERBEROS
 1.67 18-Dec-2006  christos branches: 1.67.34;
volatile fixes from Anon Ymous
 1.66 11-May-2006  mrg end the argument list to exec*(3) with a NULL instead of a bare '0', as
the latter isn't a pointer context in these varargs functions.
 1.65 05-May-2006  rpaulo Add support for RFC 3542 Adv. Socket API for IPv6 (which obsoletes 2292).
* RFC 3542 isn't binary compatible with RFC 2292.
* RFC 2292 support is on by default but can be disabled.
* update ping6, telnet and traceroute6 to the new API.

From the KAME project (www.kame.net).
Reviewed by core.
 1.64 04-Apr-2006  christos Turn if/then/elif into a switch
 1.63 02-Feb-2006  he Rename debug to telnet_debug, to allow static linking with libssh.a.
 1.62 25-Jan-2006  christos fix compilation after changes to telopts. I will revisit this and constify
it later.
 1.61 03-Apr-2005  atatat charaters -> characters
 1.60 16-Nov-2004  itojun branches: 1.60.2;
NI_WITHSCOPEID was not picked up by IETF standardization process.
 1.59 20-Mar-2004  heas - deal with a dead tty in ttyflush() by cleaning-up and exiting instead of
returning a failure code and processing that all the way up the stack.
- deal with a dead peer similarly and do it without setjmp/longjmp() (at
christos' request).

These fix bin/20304 and my own observations when the remote abruptly closes
the connection.
 1.58 05-Jan-2004  jmmv Homogenize usage messages: make the 'usage' word all lowercase, as this seems
to be the most common practice in our tree.
 1.57 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.56 14-Jul-2003  itojun more unifdef
 1.55 14-Jul-2003  itojun more unifdef
 1.54 14-Jul-2003  itojun remove unneeded #ifdef. (confirmed that same *.o is generated)
 1.53 12-Jul-2003  itojun use bounded copy ops
 1.52 12-Jul-2003  itojun strlcpy
 1.51 18-Jun-2003  christos Ansify.
 1.50 27-Apr-2003  jdolecek one <sys/cdefs.h> include is enough
fixes PR misc/21340 by Igor Sobrado
 1.49 23-Aug-2002  kanaoka - Support -4 and -6. Approved by itojun.
 1.48 14-Jun-2002  wiz De-register, de-__P. Remove #ifndef __STDC__ parts.
defines.h: Be more careful with braces in macro definitions.
 1.47 06-Jan-2002  sjg Make telnet escape work in tn3270

PR: 1816
 1.46 03-Sep-2001  itojun just to be sure, set telnetport to 0.
From: Pekka Savola <pekkas@netcore.fi>
 1.45 16-Jan-2001  cgd comment or delete text after CPP directives.
 1.44 03-Jan-2001  mjl Fix possible buffer overruns. From OpenBSD, but without breaking stuff.
 1.43 22-Jun-2000  thorpej Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.42 25-May-2000  itojun branches: 1.42.4;
add missing #ifdef INET6, to compile without -DINET6.
From: Mason Loring Bliss <mason@acheron.middleboro.ma.us>
 1.41 25-May-2000  blymn Convert telnet and top to the new termcap interface. This stops some
buffer overflows in top from ever happening.
 1.40 13-May-2000  itojun recover old error message on unknown service ("telnet localhost foo"
when foo is not valid). gai_strerror may be too generic.
fix suggested in openbsd camp.
 1.39 29-Feb-2000  itojun sync comment for sourceroute() to reality
 1.38 05-Feb-2000  itojun use getnameinfo for "Trying ::1..." message, to enable printing of
IPv6 scopeid.
 1.37 31-Jan-2000  itojun sync with latest libipsec/kernel.
 1.36 27-Jan-2000  itojun clarify reverse lookup and -N.
getaddrinfo(AI_CANONNAME) does not imply reverse lookup.
 1.35 13-Dec-1999  itojun remove setuid(getuid()). they are unnecessary as noone is going to
setuid telnet(1).

i'm not sure why it is here (maybe someone reused this code from
other setuid'ed program, or someone cut-and-pasted the code from
somewhere else?), it was from revision 1.1 (= 4.4BSD).

briefly discussed in: tech-net?
 1.34 03-Dec-1999  itojun clarify getaddrinfo() loop. try to contact all possible addresses
unless we experience fatal error.
XXX changed location of setuid(getuid()), may need someone's review.
 1.33 03-Dec-1999  itojun clarify reverse address lookup (-N). AI_NUMERICHOST is for forward lookup.

XXX RFC2553 does not say that AI_CANONNAME means reverse lookup.
we need to check if getaddrinfo(3) implementation is correct.
 1.32 30-Sep-1999  soren Remove extraneous colons and newlines from perror(3) arguments.
 1.31 28-Jul-1999  abs branches: 1.31.2;
Add -N option (numeric host address) - idea taken from FreeBSD.
Fix bug where -E8 would still pick up 0xFF as escape (again from FreeBSD)
 1.30 21-Jul-1999  jtk fix handling of port number preceded by minus sign to restore documented behavior
 1.29 14-Jul-1999  itojun clarify socket-connect trial loop. fix freeaddrinfo().
adjust indentation (commands.c uses sw=4 ts=8).
 1.28 12-Jul-1999  thorpej Whitespace cleanup.
 1.27 02-Jul-1999  itojun bark if mismatched address families are found on source route.
 1.26 02-Jul-1999  itojun IPv6-ready telnet.
source route (telnet @localhost@localhost) works for IPv6 as well.
 1.25 06-Nov-1998  christos - synchronize with the domestic version
- setupterm -> setup_term
- char -> unsigned char
 1.24 26-Jul-1998  mycroft const poisoning.
 1.23 09-Jul-1998  msaitoh Declare ints, too, don't default them.
 1.22 07-Jul-1998  fvdl Fix pasto in previous.
 1.21 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.20 30-Mar-1998  mrg use static int instead of static
 1.19 05-Mar-1998  thorpej Avoid GCC warning on m68k.
 1.18 04-Mar-1998  christos Adjust for tn3270 cleanup.
 1.17 03-Mar-1998  thorpej Add a cast to make the compiler happy on the Alpha.
 1.16 28-Feb-1998  enami Fix compile error of tn3270/tn3270; getpgrp() takes no argument.
 1.15 27-Feb-1998  christos WARNSify and fix problems passing int * -> long *
 1.14 24-Mar-1996  jtk sync up with domestic fixes
 1.13 28-Feb-1996  thorpej RCS id cosmetics.
 1.12 24-Feb-1996  jtk restore last of the lost local changes.
 1.11 24-Feb-1996  jtk replace another lost change: "help" is a valid hostname.
 1.10 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.9 05-Jan-1996  tls contrary to unpopular opinion, 'help' is a perfectly valid hostname.
 1.8 03-Jan-1995  hpeyerl Squish #581.
 1.7 24-Dec-1994  cgd headers, and use INADDR_NONE appropriately.
 1.6 08-May-1994  mycroft 020 -> IPTOS_LOWDELAY
 1.5 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.4 01-Aug-1993  mycroft Add RCS identifiers.
 1.3 29-May-1993  cgd fix sending simple commands, from Jonathan Stone <jonathan@CS.Stanford.EDU>
 1.2 19-Apr-1993  mycroft Cleanup for GCC 2.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.31.2.1 27-Dec-1999  wrstuden Pull up to last week's -current.
 1.42.4.1 22-Jun-2000  thorpej Update from trunk:
Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.60.2.1 04-Apr-2005  tron Pull up revision 1.61 (requested by atatat in ticket #87):
charaters -> characters
 1.67.34.1 17-Apr-2012  yamt sync with head
 1.68.22.1 04-Nov-2016  pgoyette Sync with HEAD
 1.70.14.2 13-Apr-2020  martin Mostly merge changes from HEAD upto 20200411
 1.70.14.1 10-Jun-2019  christos Sync with HEAD
 1.70.12.2 18-Jan-2019  pgoyette Synch with HEAD
 1.70.12.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.9 13-Dec-2018  maya unifdef TN3270 which is never defined (and wouldn't build if it was)
delete tn3270 file no longer needed.
SetIn3270(); expands to nothing now, so remove it.

No functional change.
 1.8 07-Aug-2003  agc branches: 1.8.96; 1.8.98;
Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22365, verified by myself.
 1.7 14-Jul-2003  itojun remove unneeded #ifdef. (confirmed that same *.o is generated)
 1.6 14-Jun-2002  wiz De-register, de-__P. Remove #ifndef __STDC__ parts.
defines.h: Be more careful with braces in macro definitions.
 1.5 28-Feb-1996  thorpej RCS id cosmetics.
 1.4 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.8.98.1 10-Jun-2019  christos Sync with HEAD
 1.8.96.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.44 14-Dec-2018  christos minor cleanup:
- more const
- prevent overflow of the argument vector
- change a lot of unsigned to signed to eliminate casts
 1.43 14-Dec-2018  maya Inline the only use of NetNonblockingIO.
While here inline SetSockOpt. From openbsd.
 1.42 14-Dec-2018  maya G/C In3270 - always false
 1.41 13-Dec-2018  maya Remove unused code.
 1.40 13-Dec-2018  maya static-ify.
 1.39 13-Dec-2018  maya unifdef TN3270 which is never defined (and wouldn't build if it was)
delete tn3270 file no longer needed.
SetIn3270(); expands to nothing now, so remove it.

No functional change.
 1.38 04-Oct-2016  joerg branches: 1.38.12; 1.38.14;
Remove source routing support.
 1.37 10-Jan-2012  joerg branches: 1.37.22;
Use __dead
 1.36 09-Jan-2012  christos PR/45805: Borodin Oleg: telnet/telnetd with -DAUTHENTICATION -DENCRYPTION
(rfc2941)
- Minimal diffs to separate MKCRYPTO from USE_KERBEROS
 1.35 04-Jan-2012  drochner include <netipsec/ipsec.h> rather than <netinet6/ipsec.h> from userland
where possible, for consistency and compatibility to FreeBSD
(exception: KAME specific statistics gathering in netstat(1) and systat(1))
 1.34 02-Feb-2006  he branches: 1.34.44;
Rename debug to telnet_debug, to allow static linking with libssh.a.
 1.33 06-Feb-2005  dsl Change first arg of printsub() for 'char' to 'int' so that it builds again.
This matches the binary interface from before if was de-__Peed (or at least
that of K&R C).
In any case having arguments (and return values) of char and short isn't
especially sensible.
 1.32 06-Feb-2005  tron Fix build errors caused by de-__P()--ing "libtelnet".
 1.31 20-Mar-2004  heas - deal with a dead tty in ttyflush() by cleaning-up and exiting instead of
returning a failure code and processing that all the way up the stack.
- deal with a dead peer similarly and do it without setjmp/longjmp() (at
christos' request).

These fix bin/20304 and my own observations when the remote abruptly closes
the connection.
 1.30 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.29 14-Jul-2003  itojun more unifdef
 1.28 14-Jul-2003  itojun remove unneeded #ifdef. (confirmed that same *.o is generated)
 1.27 12-Jul-2003  itojun use bounded copy ops
 1.26 18-Jun-2003  christos Ansify.
 1.25 23-Aug-2002  kanaoka - Support -4 and -6. Approved by itojun.
 1.24 14-Jun-2002  wiz Change _putchar definition to match curses.h's expectations, and
remove some __ left over from de-P()'ing (mmm, inconsistency).
Noted by Juergen Hannken-Illjes.
 1.23 14-Jun-2002  wiz De-register, de-__P. Remove #ifndef __STDC__ parts.
defines.h: Be more careful with braces in macro definitions.
 1.22 20-Aug-2001  wiz "wierd" is weird.
 1.21 18-Jun-2001  wiz Symmetric has one s and two m's.
 1.20 04-Jan-2001  itojun make usr.bin/tn3270 buildable. make sizeof(tline) usable.
 1.19 22-Jun-2000  thorpej Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.18 01-Feb-2000  assar branches: 1.18.4;
(net_write): update prototype
 1.17 31-Jan-2000  itojun sync with latest libipsec/kernel.
 1.16 21-Jan-2000  mycroft Nuke `extern int errno;' in code we compile with -Wstrict-prototypes. We get
the correct definition from errno.h.
 1.15 28-Jul-1999  abs Add -N option (numeric host address) - idea taken from FreeBSD.
Fix bug where -E8 would still pick up 0xFF as escape (again from FreeBSD)
 1.14 02-Jul-1999  itojun IPv6-ready telnet.
source route (telnet @localhost@localhost) works for IPv6 as well.
 1.13 20-Dec-1998  christos branches: 1.13.2;
Make sure termio is defined to termios.
 1.12 06-Nov-1998  christos - synchronize with the domestic version
- setupterm -> setup_term
- char -> unsigned char
 1.11 26-Jul-1998  mycroft const poisoning.
 1.10 04-Mar-1998  christos Adjust for tn3270 cleanup.
 1.9 27-Feb-1998  christos WARNSify and fix problems passing int * -> long *
 1.8 28-Feb-1996  thorpej RCS id cosmetics.
 1.7 24-Feb-1996  jtk restore local change mistakenly overrun in import of 95.10.23
telnet--keep track of a client-side close and just turn off one
direction of the socket; keep running until server side closes down too.
 1.6 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.5 17-Mar-1995  mycroft If we get an EOF on stdin, close the write side of the TCP connection, but
wait for the remote host to close the connection before exiting.
 1.4 24-Dec-1994  cgd headers, and use INADDR_NONE appropriately.
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.13.2.1 23-Jan-2000  he Pull up revision 1.16 (requested by mycroft):
Always do the errno indirection hack, so that non-threaded
libraries get the right errno value when linked with -lpthread.
This means "always include <errno.h> and never declare errno
yourself".
 1.18.4.1 22-Jun-2000  thorpej Update from trunk:
Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.34.44.1 17-Apr-2012  yamt sync with head
 1.37.22.1 04-Nov-2016  pgoyette Sync with HEAD
 1.38.14.1 10-Jun-2019  christos Sync with HEAD
 1.38.12.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.6 14-Jul-2003  itojun more unifdef
 1.5 28-Feb-1996  thorpej RCS id cosmetics.
 1.4 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.6 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.5 28-Feb-1996  thorpej RCS id cosmetics.
 1.4 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.33 03-Nov-2024  rillig sbin, usr.bin, usr.sbin: remove redundant getopt declarations

No binary change, except for assertion line numbers in tprof.
 1.32 14-Dec-2018  christos branches: 1.32.12;
minor cleanup:
- more const
- prevent overflow of the argument vector
- change a lot of unsigned to signed to eliminate casts
 1.31 13-Dec-2018  maya unifdef TN3270 which is never defined (and wouldn't build if it was)
delete tn3270 file no longer needed.
SetIn3270(); expands to nothing now, so remove it.

No functional change.
 1.30 05-Sep-2016  sevan branches: 1.30.12; 1.30.14;
Drop main() prototype.
 1.29 20-Mar-2012  matt Use C89 function definitions
 1.28 09-Jan-2012  christos PR/45805: Borodin Oleg: telnet/telnetd with -DAUTHENTICATION -DENCRYPTION
(rfc2941)
- Minimal diffs to separate MKCRYPTO from USE_KERBEROS
 1.27 21-Jul-2008  lukem branches: 1.27.2;
Remove the \n and tabs from the __COPYRIGHT() strings.
Tweak to use a consistent format.
 1.26 18-Dec-2006  christos branches: 1.26.12;
volatile fixes from Anon Ymous
 1.25 20-Mar-2006  christos Goodbye KerberosIV
 1.24 02-Feb-2006  he Rename debug to telnet_debug, to allow static linking with libssh.a.
 1.23 05-Jan-2004  jmmv Let the usage message fit in 80 columns to avoid wrapping.
 1.22 05-Jan-2004  jmmv Homogenize usage messages: make the 'usage' word all lowercase, as this seems
to be the most common practice in our tree.
 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 14-Jul-2003  itojun remove unneeded #ifdef. (confirmed that same *.o is generated)
 1.19 12-Jul-2003  itojun strlcpy
 1.18 18-Jun-2003  christos Ansify.
 1.17 23-Aug-2002  kanaoka - Support -4 and -6. Approved by itojun.
 1.16 14-Jun-2002  wiz De-register, de-__P. Remove #ifndef __STDC__ parts.
defines.h: Be more careful with braces in macro definitions.
 1.15 04-Mar-2001  assar fix spelling of cpp symbol (ENCRYPT vs ENCRYPTION).
enable encryption with autologin.
fixes PR 12226
 1.14 03-Jan-2001  mjl Fix possible buffer overruns. From OpenBSD, but without breaking stuff.
 1.13 22-Jun-2000  thorpej Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.12 31-Jan-2000  itojun branches: 1.12.4;
sync with latest libipsec/kernel.
 1.11 28-Jul-1999  abs Add -N option (numeric host address) - idea taken from FreeBSD.
Fix bug where -E8 would still pick up 0xFF as escape (again from FreeBSD)
 1.10 11-Jul-1999  thorpej Simply a construct in usage().
 1.9 02-Jul-1999  itojun IPv6-ready telnet.
source route (telnet @localhost@localhost) works for IPv6 as well.
 1.8 28-Feb-1998  enami Include unistd.h to import declaration of getopt(3).
 1.7 27-Feb-1998  christos WARNSify and fix problems passing int * -> long *
 1.6 01-Nov-1997  lukem getopt returns -1 not EOF
 1.5 28-Feb-1996  thorpej RCS id cosmetics.
 1.4 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.12.4.2 11-Mar-2001  he Pull up revision 1.15 (requested by assar):
Correct handling of encryption and decryption with Kerberos4.
Fixes PR#12226.
 1.12.4.1 22-Jun-2000  thorpej Update from trunk:
Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.26.12.1 18-Sep-2008  wrstuden Sync with wrstuden-revivesa-base-2.
 1.27.2.1 17-Apr-2012  yamt sync with head
 1.30.14.1 10-Jun-2019  christos Sync with HEAD
 1.30.12.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.32.12.1 02-Aug-2025  perseant Sync with HEAD
 1.18 14-Dec-2018  christos minor cleanup:
- more const
- prevent overflow of the argument vector
- change a lot of unsigned to signed to eliminate casts
 1.17 20-Mar-2004  heas branches: 1.17.96; 1.17.98;
- deal with a dead tty in ttyflush() by cleaning-up and exiting instead of
returning a failure code and processing that all the way up the stack.
- deal with a dead peer similarly and do it without setjmp/longjmp() (at
christos' request).

These fix bin/20304 and my own observations when the remote abruptly closes
the connection.
 1.16 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.15 14-Jul-2003  itojun more unifdef
 1.14 18-Jun-2003  christos Ansify.
 1.13 23-Sep-2002  mycroft null commit
 1.12 23-Sep-2002  itojun poll.h, not sys/poll.h
 1.11 18-Sep-2002  mycroft Oops; fix array size. Nice compiler warning... not.
 1.10 18-Sep-2002  mycroft Duh, generate the pollfd arrays outside of loops, not that it really matters.
 1.9 18-Sep-2002  mycroft select() -> poll()
 1.8 14-Jun-2002  wiz De-register, de-__P. Remove #ifndef __STDC__ parts.
defines.h: Be more careful with braces in macro definitions.
 1.7 22-Jun-2000  thorpej Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.6 27-Feb-1998  christos branches: 1.6.10;
WARNSify and fix problems passing int * -> long *
 1.5 28-Feb-1996  thorpej RCS id cosmetics.
 1.4 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.6.10.1 22-Jun-2000  thorpej Update from trunk:
Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.17.98.1 10-Jun-2019  christos Sync with HEAD
 1.17.96.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.17 13-May-2024  msaitoh s/of of/of/ in comment.
 1.16 07-Aug-2023  mrg remove always-true part of condition.

found by GCC 12.
 1.15 14-Dec-2018  christos minor cleanup:
- more const
- prevent overflow of the argument vector
- change a lot of unsigned to signed to eliminate casts
 1.14 13-Dec-2018  maya Remove unused code.
 1.13 07-Aug-2003  agc branches: 1.13.96; 1.13.98;
Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22365, verified by myself.
 1.12 14-Jul-2003  itojun remove unneeded #ifdef. (confirmed that same *.o is generated)
 1.11 18-Jun-2003  christos Ansify.
 1.10 14-Jun-2002  wiz De-register, de-__P. Remove #ifndef __STDC__ parts.
defines.h: Be more careful with braces in macro definitions.
 1.9 22-Jun-2000  thorpej Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.8 27-Feb-1998  christos branches: 1.8.10;
WARNSify and fix problems passing int * -> long *
 1.7 28-Feb-1996  thorpej RCS id cosmetics.
 1.6 24-Feb-1996  jtk restore last of the lost local changes.
 1.5 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.4 24-Dec-1994  cgd headers, and use INADDR_NONE appropriately.
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.8.10.1 22-Jun-2000  thorpej Update from trunk:
Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.13.98.1 10-Jun-2019  christos Sync with HEAD
 1.13.96.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.11 13-Dec-2018  maya Remove unused code.
 1.10 07-Aug-2003  agc branches: 1.10.96; 1.10.98;
Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22365, verified by myself.
 1.9 14-Jun-2002  wiz De-register, de-__P. Remove #ifndef __STDC__ parts.
defines.h: Be more careful with braces in macro definitions.
 1.8 22-Jun-2000  thorpej Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.7 04-Mar-1998  christos branches: 1.7.10;
Adjust for tn3270 cleanup.
 1.6 27-Feb-1998  christos WARNSify and fix problems passing int * -> long *
 1.5 28-Feb-1996  thorpej RCS id cosmetics.
 1.4 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.7.10.1 22-Jun-2000  thorpej Update from trunk:
Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.10.98.1 10-Jun-2019  christos Sync with HEAD
 1.10.96.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.40 14-Dec-2018  maya Remove unneeded casts
 1.39 14-Dec-2018  maya Remove some effectively if 0'd code.
 1.38 14-Dec-2018  maya Inline the only use of NetNonblockingIO.
While here inline SetSockOpt. From openbsd.
 1.37 13-Dec-2018  maya Expand SIG_FUNC_RET -from openbsd.
 1.36 13-Dec-2018  maya Remove unused code.
 1.35 13-Dec-2018  maya unifdef TN3270 which is never defined (and wouldn't build if it was)
delete tn3270 file no longer needed.
SetIn3270(); expands to nothing now, so remove it.

No functional change.
 1.34 04-Feb-2018  mrg branches: 1.34.2; 1.34.4;
fixes for GCC 6.4:

mail's execute() needs a volatile for setjmp().

telnet has a missing {} issue.

isdnd's print_config() has a missing/wrong {} issue, and
its p_q931bc() has inconsistent indentation (but not any
actual problem.)

map-mbone's accept_neighbors2() compares a vs. a instead
of a vs. b.

sysinst's pm_cgd_check() has missing {} issue.

timed's main() has missing {} issue.
 1.33 09-Jan-2012  christos PR/45805: Borodin Oleg: telnet/telnetd with -DAUTHENTICATION -DENCRYPTION
(rfc2941)
- Minimal diffs to separate MKCRYPTO from USE_KERBEROS
 1.32 10-Nov-2004  christos branches: 1.32.50;
Kill remnant function decl.
 1.31 20-Mar-2004  heas - deal with a dead tty in ttyflush() by cleaning-up and exiting instead of
returning a failure code and processing that all the way up the stack.
- deal with a dead peer similarly and do it without setjmp/longjmp() (at
christos' request).

These fix bin/20304 and my own observations when the remote abruptly closes
the connection.
 1.30 24-Feb-2004  wiz occured -> occurred. From Peter Postma.
 1.29 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.28 07-Aug-2003  jdolecek need to pass flags as argument to TIOCFLUSH ioctl
fixes bin/22391 by SAITOH Masanobu
 1.27 14-Jul-2003  itojun more unifdef
 1.26 14-Jul-2003  itojun more unifdef
 1.25 14-Jul-2003  itojun remove unneeded #ifdef. (confirmed that same *.o is generated)
 1.24 18-Jun-2003  christos Ansify.
 1.23 15-Mar-2003  christos PR/18984: John Heasley: telnet spins on dead tty
 1.22 23-Sep-2002  mycroft null commit
 1.21 23-Sep-2002  itojun poll.h, not sys/poll.h
 1.20 18-Sep-2002  mycroft select() -> poll()
 1.19 14-Jun-2002  wiz De-register, de-__P. Remove #ifndef __STDC__ parts.
defines.h: Be more careful with braces in macro definitions.
 1.18 11-Feb-2002  wiz s/infinate/infinite/
 1.17 16-Jan-2001  cgd comment or delete text after CPP directives.
 1.16 26-Nov-1999  msaitoh fix following sequence:
telnet localhost
cat (no argument)
control-C
(not returned to the shell prompt)
(push enter key)
(returned to prompt)
 1.15 22-Dec-1998  mcr branches: 1.15.6;
Added an #undef. This, and previous revision fixes PR bin/5374
 1.14 22-Dec-1998  mcr fixed call to select to keep track of the highest numbered file
descriptor. Also removed some redundant code that was #ifdef TN3270
(the code was the same on both sides of the #ifdef)
 1.13 09-Jul-1998  msaitoh Declare ints, too, don't default them.
 1.12 27-Feb-1998  christos WARNSify and fix problems passing int * -> long *
 1.11 28-Feb-1996  thorpej RCS id cosmetics.
 1.10 24-Feb-1996  jtk put back in a change I accidentally dropped from telnet.95.10.23
 1.9 24-Feb-1996  jtk restore local change mistakenly overrun in import of 95.10.23
telnet--keep track of a client-side close and just turn off one
direction of the socket; keep running until server side closes down too.
 1.8 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.7 15-Feb-1996  tls I seem to have forgotten to commit the patch in PR1608 when I closed it. Fix VLNEXT handling.
 1.6 17-Mar-1995  mycroft If we get an EOF on stdin, close the write side of the TCP connection, but
wait for the remote host to close the connection before exiting.
 1.5 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.4 02-Dec-1993  mycroft Patch from Frank van der Linden <vdlinden@fwi.uva.nl> to handle 57600 and
115200 baud. Baud rate checking code disabled completely when using termios.
 1.3 01-Aug-1993  mycroft Add RCS identifiers.
 1.2 19-Apr-1993  mycroft Cleanup for GCC 2.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.15.6.1 27-Dec-1999  wrstuden Pull up to last week's -current.
 1.32.50.1 17-Apr-2012  yamt sync with head
 1.34.4.1 10-Jun-2019  christos Sync with HEAD
 1.34.2.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.37 16-Apr-2022  nia telnet.1: update state of the art on Single DES encryption
 1.36 15-Dec-2018  wiz Remove reference to krb_realmofhost(3) which does not exist.

Someone who speaks kerberos might want to check the -k description.

Remove some macros that do nothing and use \(em.
 1.35 15-Dec-2018  maya You can encrypt outside of north america now.
 1.34 03-Jul-2017  wiz branches: 1.34.4; 1.34.6;
Remove workaround for ancient HTML generation code.
 1.33 08-Apr-2012  wiz Remove unnecessary Bk/Ek pairs from SYNOPSIS.
No effective change except where I used the opportunity to sort options
and/or option descriptions.
 1.32 22-Mar-2012  wiz Fix whitespace nits. Suggested by Bug Hunting.
 1.31 11-Mar-2009  joerg branches: 1.31.6;
Don't workaround ancient macro argument limit with .Xo/.Xc.
 1.30 20-Mar-2004  heas branches: 1.30.42;
remove duplicate description of DEFAULT keyword (introduced by me).
 1.29 28-Oct-2003  wiz Bump date for previous; fix a typo; use .Dq instead of \*( construct.
 1.28 27-Oct-2003  heas break the description of the "open" command into two paragraphs and improve
description of .telnetrc.
 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 25-Feb-2003  wiz .Nm does not need a dummy argument ("") before punctuation or
for correct formatting of the SYNOPSIS any longer.
 1.25 30-Sep-2002  grant New sentence, new line.
 1.24 23-Aug-2002  wiz Fix typo.
 1.23 23-Aug-2002  kanaoka - Support -4 and -6. Approved by itojun.
 1.22 08-Feb-2002  ross Generate <>& symbolically. I'm avoiding .../dist/... directories for now.
 1.21 08-Dec-2001  wiz Punctuation nit, drop a .Pp.
 1.20 03-Dec-2001  abs s/If a port is specified on the command line/If a port is specified/
for the 'omits any automatic initialisation of TELNET' sentence
 1.19 01-Dec-2001  wiz Whitespace cleanup.
 1.18 30-Nov-2001  kleink Improve previous' markup usage a bit.
 1.17 30-Nov-2001  kleink Document the .telnetrc DEFAULT machine entry.
 1.16 28-Nov-2001  abs Clarify when automatic initialisation of TELNET options occurs.
Reported by John Heasley.
 1.15 04-Apr-2001  wiz Whitespace and punctuation fixes.
 1.14 07-Nov-2000  lukem fix up various .Nm abuses:
- keep the case consistent between the actual name and what's referenced.
e.g, if it's `foo', don't use '.Nm Foo' at the start of a sentence.
- remove unnecessary `.Nm foo' after the first occurrence (except for
using `.Nm ""' if there's stuff following, or for the 2nd and so on
occurrences in a SYNOPSIS
- use Sx, Ic, Li, Em, Sq, and Xr as appropriate
 1.13 28-Jul-1999  abs Add -N option (numeric host address) - idea taken from FreeBSD.
Fix bug where -E8 would still pick up 0xFF as escape (again from FreeBSD)
 1.12 02-Jul-1999  itojun IPv6-ready telnet.
source route (telnet @localhost@localhost) works for IPv6 as well.
 1.11 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.10 07-Mar-1999  mycroft Clean up SYNOPSIS formatting.
 1.9 03-Jun-1997  mikel fix some minor macro usage and other bugs; some from Saitoh Masanobu
in PR misc/3656, others by myself.
 1.8 13-May-1997  mikel fix typos noted by Masanobu Saitoh <msaitoh@spa.is.uec.ac.jp>.
 1.7 11-May-1997  mikel fix a typo, noted by SAITOH Masanobu in PR misc/3599.
while I'm here, fix some other nits.
 1.6 11-Nov-1996  lukem fix the the typos (and 1 other)
 1.5 28-Feb-1996  thorpej RCS id cosmetics.
 1.4 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.3 11-Jan-1994  jtc Fix spelling errors.
 1.2 01-Aug-1993  mycroft Add RCS indentifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.30.42.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.6.1 17-Apr-2012  yamt sync with head
 1.34.6.1 10-Jun-2019  christos Sync with HEAD
 1.34.4.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.44 30-Oct-2021  hannken Obvious typo ':' -> ';'.
 1.43 30-Oct-2021  nia telnet(1): use reallocarr instead of malloc(x * y)
 1.42 05-Jan-2019  maya unifdef compatibility for old BSD servers. This has been
disabled, so no binary change. from openbsd.
 1.41 14-Dec-2018  christos minor cleanup:
- more const
- prevent overflow of the argument vector
- change a lot of unsigned to signed to eliminate casts
 1.40 14-Dec-2018  maya G/C In3270 - always false
 1.39 13-Dec-2018  maya Remove unused code.
 1.38 13-Dec-2018  maya unifdef TN3270 which is never defined (and wouldn't build if it was)
delete tn3270 file no longer needed.
SetIn3270(); expands to nothing now, so remove it.

No functional change.
 1.37 12-Dec-2018  maya switch sprintf to snprintf in places.

Reported by hacker fantastic, thanks!

ok xtos.
 1.36 10-Jan-2012  christos branches: 1.36.18; 1.36.20; 1.36.28; 1.36.32; 1.36.38; 1.36.40;
fix signed/unsigned comparison.
 1.35 09-Jan-2012  christos PR/45805: Borodin Oleg: telnet/telnetd with -DAUTHENTICATION -DENCRYPTION
(rfc2941)
- Minimal diffs to separate MKCRYPTO from USE_KERBEROS
 1.34 07-Oct-2011  christos branches: 1.34.2;
remove casts
 1.33 07-Oct-2011  joerg Simplify
 1.32 05-Oct-2011  roy Use terminfo and the non-standard ttytype rather than termcap.
 1.31 02-Feb-2006  he Rename debug to telnet_debug, to allow static linking with libssh.a.
 1.30 29-Mar-2005  drochner plug buffer overflows, see
http://www.idefense.com/application/poi/display?id=220&type=vulnerabilities
http://www.idefense.com/application/poi/display?id=221&type=vulnerabilities
(CAN 2005-0468 and 2005-0469)

Patch taken from MIT/Kerberos (MITKRB5-SA-2005-001-telnet.txt)
 1.29 04-Nov-2004  dsl branches: 1.29.2;
Add (unsigned char) cast to ctype functions
 1.28 20-Mar-2004  heas branches: 1.28.2; 1.28.4;
- deal with a dead tty in ttyflush() by cleaning-up and exiting instead of
returning a failure code and processing that all the way up the stack.
- deal with a dead peer similarly and do it without setjmp/longjmp() (at
christos' request).

These fix bin/20304 and my own observations when the remote abruptly closes
the connection.
 1.27 17-Nov-2003  wiz Various typo fixes from Jonathon Gray via jmc@openbsd.
 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 14-Jul-2003  itojun more unifdef
 1.24 14-Jul-2003  itojun remove unneeded #ifdef. (confirmed that same *.o is generated)
 1.23 12-Jul-2003  itojun use bounded copy ops
 1.22 18-Jun-2003  christos Ansify.
 1.21 14-Jun-2002  wiz De-register, de-__P. Remove #ifndef __STDC__ parts.
defines.h: Be more careful with braces in macro definitions.
 1.20 11-Feb-2002  wiz branches: 1.20.2;
s/infinate/infinite/
 1.19 24-Sep-2001  wiz va_{start,end} audit:
Make sure that each va_start has one and only one matching va_end,
especially in error cases.
If the va_list is used multiple times, do multiple va_starts/va_ends.
If a function gets va_list as argument, don't let it use va_end (since
it's the callers responsibility).

Improved by comments from enami and christos -- thanks!

Heimdal/krb4/KAME changes already fed back, rest to follow.

Inspired by, but not not based on, OpenBSD.
 1.18 22-Jul-2001  wiz seperate -> separate
 1.17 04-Mar-2001  assar fix spelling of cpp symbol (ENCRYPT vs ENCRYPTION).
enable encryption with autologin.
fixes PR 12226
 1.16 22-Jun-2000  thorpej Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.15 25-May-2000  blymn branches: 1.15.4;
Convert telnet and top to the new termcap interface. This stops some
buffer overflows in top from ever happening.
 1.14 30-Dec-1999  itojun avoid memory leak on realloc() failure.
 1.13 28-Jul-1999  abs Add -N option (numeric host address) - idea taken from FreeBSD.
Fix bug where -E8 would still pick up 0xFF as escape (again from FreeBSD)
 1.12 06-Nov-1998  christos branches: 1.12.2;
- synchronize with the domestic version
- setupterm -> setup_term
- char -> unsigned char
 1.11 26-Jul-1998  mycroft const poisoning.
 1.10 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.9 27-Feb-1998  christos WARNSify and fix problems passing int * -> long *
 1.8 03-Jun-1997  mycroft Don't interpret _POSIX_VDISABLE as a special character.
 1.7 28-Feb-1996  thorpej RCS id cosmetics.
 1.6 24-Feb-1996  jtk restore local change mistakenly overrun in import of 95.10.23
telnet--keep track of a client-side close and just turn off one
direction of the socket; keep running until server side closes down too.
 1.5 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.4 17-Mar-1995  mycroft If we get an EOF on stdin, close the write side of the TCP connection, but
wait for the remote host to close the connection before exiting.
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.12.2.1 08-Jan-2000  he Pull up revision 1.14 (requested by itojun):
Avoid memory leak on realloc() failure.
 1.15.4.2 11-Mar-2001  he Pull up revision 1.17 (requested by assar):
Correct handling of encryption and decryption with Kerberos4.
Fixes PR#12226.
 1.15.4.1 22-Jun-2000  thorpej Update from trunk:
Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.20.2.1 08-Apr-2005  he Pull up revision 1.30 (via patch, requested by tron in ticket #5742):
Plug buffer overflows, ref. CAN 2005-0468 and 2005-0469.
Patch from MIT/Kerberos (MITKRB5-SA-2005-001-telnet.txt).
 1.28.4.1 08-Apr-2005  he Pull up revision 1.30 (requested by tron in ticket #1410):
Plug buffer overflows, ref. CAN 2005-0468 and 2005-0469.
Patch from MIT/Kerberos (MITKRB5-SA-2005-001-telnet.txt).
 1.28.2.1 08-Apr-2005  he Pull up revision 1.30 (requested by tron in ticket #1410):
Plug buffer overflows, ref. CAN 2005-0468 and 2005-0469.
Patch from MIT/Kerberos (MITKRB5-SA-2005-001-telnet.txt).
 1.29.2.1 08-Apr-2005  he Pull up revision 1.30 (requested by tron in ticket #124):
Plug buffer overflows, ref. CAN 2005-0468 and 2005-0469.
Patch from MIT/Kerberos (MITKRB5-SA-2005-001-telnet.txt).
 1.34.2.1 17-Apr-2012  yamt sync with head
 1.36.40.1 10-Jun-2019  christos Sync with HEAD
 1.36.38.2 18-Jan-2019  pgoyette Synch with HEAD
 1.36.38.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.36.32.1 18-Dec-2018  martin Pull up following revision(s) (requested by maya in ticket #1135):

usr.bin/telnet/utilities.c: revision 1.24
usr.bin/telnet/telnet.c: revision 1.37

switch sprintf to snprintf in places.

Reported by hacker fantastic, thanks!

ok xtos.
 1.36.28.1 18-Dec-2018  martin Pull up following revision(s) (requested by maya in ticket #1665):

usr.bin/telnet/utilities.c: revision 1.24
usr.bin/telnet/telnet.c: revision 1.37

switch sprintf to snprintf in places.

Reported by hacker fantastic, thanks!

ok xtos.
 1.36.20.1 18-Dec-2018  martin Pull up following revision(s) (requested by maya in ticket #1665):

usr.bin/telnet/utilities.c: revision 1.24
usr.bin/telnet/telnet.c: revision 1.37

switch sprintf to snprintf in places.

Reported by hacker fantastic, thanks!

ok xtos.
 1.36.18.1 18-Dec-2018  martin Pull up following revision(s) (requested by maya in ticket #1665):

usr.bin/telnet/utilities.c: revision 1.24
usr.bin/telnet/telnet.c: revision 1.37

switch sprintf to snprintf in places.

Reported by hacker fantastic, thanks!

ok xtos.
 1.16 14-Dec-2018  maya G/C In3270 - always false
 1.15 19-Feb-2005  christos branches: 1.15.90; 1.15.92;
Make this compile if pam is present. XXX: this sucks, because we don't
really use PAM here, but libtelnet needs it.
 1.14 20-Mar-2004  heas - deal with a dead tty in ttyflush() by cleaning-up and exiting instead of
returning a failure code and processing that all the way up the stack.
- deal with a dead peer similarly and do it without setjmp/longjmp() (at
christos' request).

These fix bin/20304 and my own observations when the remote abruptly closes
the connection.
 1.13 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.12 14-Jul-2003  itojun more unifdef
 1.11 14-Jul-2003  itojun remove unneeded #ifdef. (confirmed that same *.o is generated)
 1.10 18-Jun-2003  christos Ansify.
 1.9 15-Mar-2003  christos PR/18984: John Heasley: telnet spins on dead tty
 1.8 14-Jun-2002  wiz De-register, de-__P. Remove #ifndef __STDC__ parts.
defines.h: Be more careful with braces in macro definitions.
 1.7 22-Jun-2000  thorpej Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.6 27-Feb-1998  christos branches: 1.6.10;
WARNSify and fix problems passing int * -> long *
 1.5 28-Feb-1996  thorpej RCS id cosmetics.
 1.4 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.6.10.1 22-Jun-2000  thorpej Update from trunk:
Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.15.92.1 10-Jun-2019  christos Sync with HEAD
 1.15.90.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.23 13-Dec-2018  maya unifdef TN3270 which is never defined (and wouldn't build if it was)
delete tn3270 file no longer needed.
SetIn3270(); expands to nothing now, so remove it.

No functional change.
 1.22 07-Oct-2006  elad branches: 1.22.80; 1.22.82;
PR/18906: roskens at elfin dot net: misc. select() to poll() updates.

Adapted to -current by myself, thanks for the patch!
 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 16-Jul-2003  itojun remove #ifdef sun
 1.19 14-Jul-2003  itojun more unifdef
 1.18 14-Jul-2003  itojun remove unneeded #ifdef. (confirmed that same *.o is generated)
 1.17 12-Jul-2003  itojun use bounded copy ops
 1.16 19-Jun-2003  christos fix fallout from previous ansification (thanks to Juergen Hannken-Illjes)
 1.15 18-Jun-2003  christos Ansify.
 1.14 23-Sep-2002  mycroft null commit
 1.13 23-Sep-2002  itojun poll.h, not sys/poll.h
 1.12 18-Sep-2002  mycroft Duh, generate the pollfd arrays outside of loops, not that it really matters.
 1.11 18-Sep-2002  mycroft select() -> poll()
 1.10 14-Jun-2002  wiz Change _putchar definition to match curses.h's expectations, and
remove some __ left over from de-P()'ing (mmm, inconsistency).
Noted by Juergen Hannken-Illjes.
 1.9 14-Jun-2002  wiz De-register, de-__P. Remove #ifndef __STDC__ parts.
defines.h: Be more careful with braces in macro definitions.
 1.8 04-Mar-1998  christos Adjust for tn3270 cleanup.
 1.7 27-Feb-1998  christos WARNSify and fix problems passing int * -> long *
 1.6 17-Feb-1998  kleink Include <sys/time.h>, which is the canonical location of the select()
prototype and assorted data type definitions.
 1.5 28-Feb-1996  thorpej RCS id cosmetics.
 1.4 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.22.82.1 10-Jun-2019  christos Sync with HEAD
 1.22.80.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.7 13-Dec-2018  maya Remove unused code.
 1.6 07-Aug-2003  agc branches: 1.6.96; 1.6.98;
Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22365, verified by myself.
 1.5 28-Feb-1996  thorpej RCS id cosmetics.
 1.4 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.6.98.1 10-Jun-2019  christos Sync with HEAD
 1.6.96.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.29 05-Jan-2019  maya unifdef compatibility for old BSD servers. This has been
disabled, so no binary change. from openbsd.
 1.28 14-Dec-2018  christos minor cleanup:
- more const
- prevent overflow of the argument vector
- change a lot of unsigned to signed to eliminate casts
 1.27 13-Dec-2018  maya ExitString is used for error exit, do the minimum necessary here.
Avoid infinite loop:
telrcv->suboption->ExitString->SetForExit->telrcv

Reported by hacker fantastic, thanks!
 1.26 13-Dec-2018  maya static-ify.
 1.25 13-Dec-2018  maya unifdef TN3270 which is never defined (and wouldn't build if it was)
delete tn3270 file no longer needed.
SetIn3270(); expands to nothing now, so remove it.

No functional change.
 1.24 12-Dec-2018  maya switch sprintf to snprintf in places.

Reported by hacker fantastic, thanks!

ok xtos.
 1.23 09-Jan-2012  christos branches: 1.23.18; 1.23.20; 1.23.28; 1.23.32; 1.23.38; 1.23.40;
PR/45805: Borodin Oleg: telnet/telnetd with -DAUTHENTICATION -DENCRYPTION
(rfc2941)
- Minimal diffs to separate MKCRYPTO from USE_KERBEROS
 1.22 07-Oct-2006  elad branches: 1.22.40;
PR/18906: roskens at elfin dot net: misc. select() to poll() updates.

Adapted to -current by myself, thanks for the patch!
 1.21 06-Feb-2005  dsl Change first arg of printsub() for 'char' to 'int' so that it builds again.
This matches the binary interface from before if was de-__Peed (or at least
that of K&R C).
In any case having arguments (and return values) of char and short isn't
especially sensible.
 1.20 06-Feb-2005  tron Fix build errors caused by de-__P()--ing "libtelnet".
 1.19 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.18 14-Jul-2003  itojun more unifdef
 1.17 14-Jul-2003  itojun remove unneeded #ifdef. (confirmed that same *.o is generated)
 1.16 12-Jul-2003  itojun use bounded copy ops
 1.15 18-Jun-2003  christos Ansify.
 1.14 23-Sep-2002  mycroft null commit
 1.13 23-Sep-2002  itojun poll.h, not sys/poll.h
 1.12 18-Sep-2002  mycroft Duh, generate the pollfd arrays outside of loops, not that it really matters.
 1.11 18-Sep-2002  mycroft select() -> poll()
 1.10 14-Jun-2002  wiz De-register, de-__P. Remove #ifndef __STDC__ parts.
defines.h: Be more careful with braces in macro definitions.
 1.9 22-Jun-2000  thorpej Fix unused variable warning in the non-ENCRYPTION case (e.g. when
built at tn3270(1)).
 1.8 22-Jun-2000  thorpej Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.7 04-Mar-1998  christos branches: 1.7.10;
Adjust for tn3270 cleanup.
 1.6 27-Feb-1998  christos WARNSify and fix problems passing int * -> long *
 1.5 28-Feb-1996  thorpej RCS id cosmetics.
 1.4 24-Feb-1996  jtk update to 95.10.23 version of telnet
also, RCS ID police
 1.3 25-Feb-1994  cgd new telnet from ftp.cray.com. Encryption support ripped out, pending
figuring out what to do about it...
 1.2 01-Aug-1993  mycroft Add RCS identifiers.
 1.1 21-Mar-1993  cgd branches: 1.1.1;
Initial revision
 1.1.1.1 21-Mar-1993  cgd initial import of 386bsd-0.1 sources
 1.7.10.2 22-Jun-2000  thorpej Pull up rev. 1.9:
Fix unused variable warning in the non-ENCRYPTION case (e.g. when
built at tn3270(1)).
 1.7.10.1 22-Jun-2000  thorpej Update from trunk:
Bring the telnet situation back into better shape. Specifically,
pull in just about all of the differences from the crypto-us telnet
suite (which includes Kerberos 4 and connection encryption support).
Also bring in the Kerberos 5 support from the Heimdal telnet, and
frob a little so that it can work with the non-Heimdal telnet suite.

There is still some work left to do, specifically:
- Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4
module.
- Add connection encryption support to the Heimdal Kerberos 5
module. Hints on this can be taken from the MIT Kerberos 5
module which still exists in crypto-us.

However, even with the shortcomings listed above, this is a
better situation than using the stock Heimdal telnet suite,
which does not understand the IPSec policy stuff, and is also
based on much older code which contains bugs that we have already
fixed in the NetBSD sources.
 1.22.40.1 17-Apr-2012  yamt sync with head
 1.23.40.1 10-Jun-2019  christos Sync with HEAD
 1.23.38.2 18-Jan-2019  pgoyette Synch with HEAD
 1.23.38.1 26-Dec-2018  pgoyette Sync with HEAD, resolve a few conflicts
 1.23.32.1 18-Dec-2018  martin Pull up following revision(s) (requested by maya in ticket #1135):

usr.bin/telnet/utilities.c: revision 1.24
usr.bin/telnet/telnet.c: revision 1.37

switch sprintf to snprintf in places.

Reported by hacker fantastic, thanks!

ok xtos.
 1.23.28.1 18-Dec-2018  martin Pull up following revision(s) (requested by maya in ticket #1665):

usr.bin/telnet/utilities.c: revision 1.24
usr.bin/telnet/telnet.c: revision 1.37

switch sprintf to snprintf in places.

Reported by hacker fantastic, thanks!

ok xtos.
 1.23.20.1 18-Dec-2018  martin Pull up following revision(s) (requested by maya in ticket #1665):

usr.bin/telnet/utilities.c: revision 1.24
usr.bin/telnet/telnet.c: revision 1.37

switch sprintf to snprintf in places.

Reported by hacker fantastic, thanks!

ok xtos.
 1.23.18.1 18-Dec-2018  martin Pull up following revision(s) (requested by maya in ticket #1665):

usr.bin/telnet/utilities.c: revision 1.24
usr.bin/telnet/telnet.c: revision 1.37

switch sprintf to snprintf in places.

Reported by hacker fantastic, thanks!

ok xtos.

RSS XML Feed