pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/security/heimdal heimdal: update to 7.7.0.
details: https://anonhg.NetBSD.org/pkgsrc/rev/0b8bcc86c462
branches: trunk
changeset: 768380:0b8bcc86c462
user: wiz <wiz%pkgsrc.org@localhost>
date: Thu Oct 21 07:46:02 2021 +0000
description:
heimdal: update to 7.7.0.
This version supports openssl 1.1, so re-enable it.
Release Notes - Heimdal - Version Heimdal 7.7
Bug fixes
- PKCS#11 hcrypto back-end
. initialize the p11_module_load function list
. verify that not only is a mechanism present but that its mechanism
info states that it offers the required encryption, decryption or
digest services
- krb5:
. Starting with 7.6, Heimdal permitted requesting authenticated
anonymous tickets. However, it did not verify that a KDC in fact
returned an anonymous ticket when one was requested.
- Cease setting the KDCOption reaquest_anonymous flag when issuing
S4UProxy (constrained delegation) TGS requests.
. when the Win2K PKINIT compatibility option is set, do
not require krbtgt otherName to match when validating KDC
certificate.
. set PKINIT_BTMM flag per Apple implementation
. use memset_s() instead of memset()
- kdc:
. When generating KRB5SignedPath in the AS, use the reply client name
rather than the one from the request, so validation will work
correctly in the TGS.
. allow checksum of PA-FOR-USER to be HMAC_MD5. Even if tgt used
an enctype with a different checksum. Per [MS-SFU] 2.2.1
PA-FOR-USER the checksum is always HMAC_MD5, and that's what
Windows and MIT clients send.
In heimdal both the client and kdc use instead the
checksum of the tgt, and therefore work with each other
but Windows and MIT clients fail against heimdal KDC.
Both Windows and MIT KDCs would allow any keyed checksum
to be used so Heimdal client interoperates with them.
Change Heimdal KDC to allow HMAC_MD5 even for non RC4
based tgt in order to support per-spec clients.
. use memset_s() instead of memset().
- Detect Heimdal 1.0 through 7.6 clients that issue S4UProxy
(constrained delegation) TGS Requests with the request
anonymous flag set. These requests will be treated as
S4UProxy requests and not anonymous requests.
- HDB:
. Set SQLite3 backend default page size to 8KB.
. Add hdb_set_sync() method
- kadmind:
. disable HDB sync during database load avoiding unnecessary disk i/o.
- ipropd:
. disable HDB sync during receive_everything. Doing an fsync
per-record when receiving the complete HDB is a performance
disaster. Among other things, if the HDB is very large, then
one slave receving a full HDB can cause other slaves to timeout
and, if HDB write activity is high enough to cause iprop log
truncation, then also need full syncs, which leads to a cycle of
full syncs for all slaves until HDB write activity drops.
Allowing the iprop log to be larger helps, but improving
receive_everything() performance helps even more.
- kinit:
. Anonymous PKINIT tickets discard the realm information used
to locate the issuing AS. Store the issuing realm in the
credentials cache in order to locate a KDC which can renew them.
. Do not leak the result of krb5_cc_get_config() when determining
anonymous PKINIT start realm.
- klist:
. Show transited-policy-checked, ok-as-delegate and anonymous
flags when listing credentials.
- tests:
. Regenerate certs so that they expire before the 2038 armageddon
so the test suite will pass on 32-bit operating systems until the
underlying issues can be resolved.
- Solaris:
. Define _STDC_C11_BCI for memset_s prototype
- build tooling:
. Convert from python 2 to python 3
- documentation
. rename verify-password to verify-password-quality
. hprop default mode is encrypt
. kadmind "all" permission does not include "get-keys"
. verify-password-quality might not be stateless
Release Notes - Heimdal - Version Heimdal 7.6
Security
- CVE-2018-16860 Heimdal KDC: Reject PA-S4U2Self with unkeyed checksum
When the Heimdal KDC checks the checksum that is placed on the
S4U2Self packet by the server to protect the requested principal
against modification, it does not confirm that the checksum
algorithm that protects the user name (principal) in the request
is keyed. This allows a man-in-the-middle attacker who can
intercept the request to the KDC to modify the packet by replacing
the user name (principal) in the request with any desired user
name (principal) that exists in the KDC and replace the checksum
protecting that name with a CRC32 checksum (which requires no
prior knowledge to compute).
This would allow a S4U2Self ticket requested on behalf of user
name (principal) user%EXAMPLE.COM@localhost to any service to be changed
to a S4U2Self ticket with a user name (principal) of
Administrator%EXAMPLE.COM@localhost. This ticket would then contain the
PAC of the modified user name (principal).
- CVE-2019-12098, client-only:
RFC8062 Section 7 requires verification of the PA-PKINIT-KX key excahnge
when anonymous PKINIT is used. Failure to do so can permit an active
attacker to become a man-in-the-middle.
Bug fixes
- Happy eyeballs: Don't wait for responses from known-unreachable KDCs.
- kdc: check return copy_Realm, copy_PrincipalName, copy_EncryptionKey
- kinit:
. cleanup temporary ccaches
. see man page for "kinit --anonymous" command line syntax change
- kdc: Make anonymous AS-requests more RFC8062-compliant.
- Updated expired test certificates
- Solaris:
. PKCS#11 hcrypto backend broken since 7.0.1
. Building with Sun Pro C
Features
- kuser: support authenticated anonymous AS-REQs in kinit
- kdc: support for anonymous TGS-REQs
- kgetcred support for anonymous service tickets
- Support builds with OpenSSL 1.1.1
Release Notes - Heimdal - Version Heimdal 7.5
Security
- Fix CVE-2017-17439, which is a remote denial of service
vulnerability:
In Heimdal 7.1 through 7.4, remote unauthenticated attackers
are able to crash the KDC by sending a crafted UDP packet
containing empty data fields for client name or realm.
Bug fixes
- Handle long input lines when reloading database dumps.
- In pre-forked mode (default on Unix), correctly clear
the process ids of exited children, allowing new child processes
to replace the old.
- Fixed incorrect KDC response when no-cross realm TGT exists,
allowing client requests to fail quickly rather than time
out after trying to get a correct answer from each KDC.
Release Notes - Heimdal - Version Heimdal 7.4
Security
- Fix CVE-2017-11103: Orpheus' Lyre KDC-REP service name validation
This is a critical vulnerability.
In _krb5_extract_ticket() the KDC-REP service name must be obtained from
encrypted version stored in 'enc_part' instead of the unencrypted version
stored in 'ticket'. Use of the unecrypted version provides an
opportunity for successful server impersonation and other attacks.
Identified by Jeffrey Altman, Viktor Duchovni and Nico Williams.
See https://www.orpheus-lyre.info/ for more details.
Release Notes - Heimdal - Version Heimdal 7.3
Security
- Fix transit path validation. Commit f469fc6 (2010-10-02) inadvertently
caused the previous hop realm to not be added to the transit path
of issued tickets. This may, in some cases, enable bypass of capath
policy in Heimdal versions 1.5 through 7.2.
Note, this may break sites that rely on the bug. With the bug some
incomplete [capaths] worked, that should not have. These may now break
authentication in some cross-realm configurations.
(CVE-2017-6594)
Release Notes - Heimdal - Version Heimdal 7.2
Bug fixes
- Portability improvements
- More strict parsing of encoded URI components in HTTP KDC
- Fixed memory leak in malloc error recovery in NTLM GSSAPI mechanism
- Avoid overly specific CPU info in krb5-config in aid of reproducible builds
- Don't do AFS string-to-key tests when feature is disabled
- Skip mdb_stat test when the command is not available
- Windows: update SHA2 timestamp server
- hdb: add missing export hdb_generate_key_set_password_with_ks_tuple
- Fix signature of hdb_generate_key_set_password()
- Windows: enable KX509 support in the KDC
- kdc: fix kx509 service principal match
- iprop: handle case where master sends nothing new
- ipropd-slave: fix incorrect error codes
- Allow choice of sqlite for HDB pref
- check-iprop: don't fail to kill daemons
- roken: pidfile -> rk_pidfile
- kdc: _kdc_do_kx509 fix use after free error
- Do not detect x32 as 64-bit platform.
- No sys/ttydefaults.h on CYGWIN
- Fix check-iprop races
- roken_detach_prep() close pipe
Release Notes - Heimdal - Version Heimdal 7.1
Security
- kx509 realm-chopping security bug
- non-authorization of alias additions/removals in kadmind
(CVE-2016-2400)
Feature
- iprop has been revamped to fix a number of race conditions that could
lead to inconsistent replication
- Hierarchical capath support
- AES Encryption with HMAC-SHA2 for Kerberos 5
draft-ietf-kitten-aes-cts-hmac-sha2-11
- hcrypto is now thread safe on all platforms
- libhcrypto has new backends: CNG (Windows), PKCS#11 (mainly for
Solaris), and OpenSSL. OpenSSL is now a first-class libhcrypto backend.
OpenSSL 1.0.x and 1.1 are both supported. AES-NI used when supported by
backend
- HDB now supports LMDB
- Thread support on Windows
- RFC 6113 Generalized Framework for Kerberos Pre-Authentication (FAST)
- New GSS APIs:
. gss_localname
- Allow setting what encryption types a principal should have with
[kadmin] default_key_rules, see krb5.conf manpage for more info
- Unify libhcrypto with LTC (libtomcrypto)
- asn1_compile 64-bit INTEGER functionality
- HDB key history support including --keepold kadmin password option
- Improved cross-realm key rollover safety
- New krb5_kuserok() and krb5_aname_to_localname() plug-in interfaces
- Improved MIT compatibility
. kadm5 API
. Migration from MIT KDB via "mitdb" HDB backend
. Capable of writing the HDB in MIT dump format
- Improved Active Directory interoperability
. Enctype selection issues for PAC and other authz-data signatures
. Cross realm key rollover (kvno 0)
- New [kdc] enctype negotiation configuration:
. tgt-use-strongest-session-key
. svc-use-strongest-session-key
. preauth-use-strongest-session-key
. use-strongest-server-key
- The KDC process now uses a multi-process model improving
resiliency and performance
- Allow batch-mode kinit with password file
- SIGINFO support added to kinit cmd
- New kx509 configuration options:
. kx509_ca
. kca_service
. kx509_include_pkinit_san
. kx509_template
- Improved Heimdal library/plugin version safety
- Name canonicalization
. DNS resolver searchlist
. Improved referral support
. Support host:port host-based services
- Pluggable libheimbase interface for DBs
- Improve IPv6 Support
- LDAP
. Bind DN and password
. Start TLS
- klist --json
- DIR credential cache type
- Updated upstream SQLite and libedit
- Removed legacy applications: ftp, kx, login, popper, push, rcp, rsh,
telnet, xnlock
- Completely remove RAND_egd support
- Moved kadmin and ktutil to /usr/bin
- Stricter fcache checks (see fcache_strict_checking krb5.conf setting)
. use O_NOFOLLOW
. don't follow symlinks
. require cache files to be owned by the user
. require sensible permissions (not group/other readable)
- Implemented gss_store_cred()
- Many more
Bug fixes
- iprop has been revamped to fix a number of race conditions that could
lead to data loss
- Include non-loopback addresses assigned to loopback interfaces
when requesting tickets with addresses
- KDC 1DES session key selection (for AFS rxkad-k5 compatibility)
- Keytab file descriptor and lock leak
- Credential cache corruption bugs
(NOTE: The FILE ccache is still not entirely safe due to the
fundamentally unsafe design of POSIX file locking)
- gss_pseudo_random() interop bug
- Plugins are now preferentially loaded from the run-time install tree
- Reauthentication after password change in init_creds_password
- Memory leak in the client kadmin library
- TGS client requests renewable/forwardable/proxiable when possible
- Locking issues in DB1 and DB3 HDB backends
- Master HDB can remain locked while waiting for network I/O
- Renewal/refresh logic when kinit is provided with a command
- KDC handling of enterprise principals
- Use correct bit for anon-pkinit
- Many more
diffstat:
security/heimdal/Makefile | 45 +-
security/heimdal/PLIST | 115 +++--
security/heimdal/PLIST.OpenBSD | 2 -
security/heimdal/buildlink3.mk | 9 +-
security/heimdal/builtin.mk | 13 +-
security/heimdal/distinfo | 25 +-
security/heimdal/options.mk | 21 +-
security/heimdal/patches/patch-ad | 292 ----------------
security/heimdal/patches/patch-al | 13 -
security/heimdal/patches/patch-cf_install-catman.sh | 15 -
security/heimdal/patches/patch-cf_libtool.m4 | 33 -
security/heimdal/patches/patch-cf_pthreads.m4 | 15 -
security/heimdal/patches/patch-cf_roken-frag.m4 | 14 -
security/heimdal/patches/patch-kdc_version-script.map | 17 -
security/heimdal/patches/patch-lib_hdb_hdb-mitdb.c | 15 +
security/heimdal/patches/patch-lib_ipc_server.c | 15 -
security/heimdal/patches/patch-lib_libedit_aclocal.m4 | 31 -
security/heimdal/patches/patch-lib_libedit_configure | 158 --------
security/heimdal/patches/patch-lib_libedit_configure.ac | 20 -
security/heimdal/patches/patch-lib_libedit_src_unvis.c | 18 -
security/heimdal/patches/patch-lib_libedit_src_vis.c | 22 -
security/heimdal/patches/patch-lib_otp_Makefile.in | 12 -
security/heimdal/patches/patch-lib_roken_vis.c | 16 -
security/heimdal/patches/patch-tools_krb5-config.in | 15 -
24 files changed, 111 insertions(+), 840 deletions(-)
diffs (truncated from 1459 to 300 lines):
diff -r 710c833a96bb -r 0b8bcc86c462 security/heimdal/Makefile
--- a/security/heimdal/Makefile Thu Oct 21 07:31:56 2021 +0000
+++ b/security/heimdal/Makefile Thu Oct 21 07:46:02 2021 +0000
@@ -1,17 +1,17 @@
-# $NetBSD: Makefile,v 1.146 2021/05/09 16:04:34 thor Exp $
+# $NetBSD: Makefile,v 1.147 2021/10/21 07:46:02 wiz Exp $
-DISTNAME= heimdal-1.5.3
-PKGREVISION= 29
+DISTNAME= heimdal-7.7.0
CATEGORIES= security
-# Original distfile is unavailable on Github
-#GITHUB_TAG= ${DISTNAME}
-#MASTER_SITES= ${MASTER_SITE_GITHUB:=heimdal/}
+MASTER_SITES= ${MASTER_SITE_GITHUB:=heimdal/}
+GITHUB_TAG= ${DISTNAME}
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= http://www.h5l.org/
COMMENT= Kerberos 5 implementation
LICENSE= modified-bsd
+BUILD_DEPENDS+= p5-JSON-[0-9]*:../../converters/p5-JSON
+
CONFLICTS+= arla-[0-9]*
CONFLICTS+= mit-krb5-[0-9]*
CONFLICTS+= openafs-[0-9]*
@@ -19,17 +19,13 @@
CONFLICTS+= kth-krb4-[0-9]*
USE_LIBTOOL= yes
-USE_TOOLS+= bison flex:run
+USE_TOOLS+= bison flex:run perl
PKGCONFIG_OVERRIDE+= tools/heimdal-gssapi.pc.in
MAKE_ENV+= INSTALL_CATPAGES=no
-# heimdal-1.5.3 on NetBSD 8.1 fails with:
-# cc [...] -c hxtool.c
-# In file included from hxtool.c:34:0:
-# hx_locl.h:66:23: fatal error: ocsp_asn1.h: No such file or directory
-#
-# https://mail-index.netbsd.org/pkgsrc-users/2020/02/20/msg030473.html
-MAKE_JOBS_SAFE= no
+BUILD_DEFS+= VARBASE
+
+WRKSRC= ${WRKDIR}/${DISTNAME}
.include "options.mk"
@@ -42,15 +38,10 @@
CONFIGURE_ARGS+= --includedir=${PREFIX}/include/krb5
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
CONFIGURE_ARGS+= --with-hdbdir=${HEIMDAL_HDB_DIR}
-# not compatible to openssl 1.1
-# TODO: re-enable when updating from 1.5.3, also in buildlink3.mk
-CONFIGURE_ARGS+= --without-openssl
CONFIGURE_ARGS+= --with-sqlite3=${BUILDLINK_PREFIX.sqlite3}
CONFIGURE_ARGS+= --without-x
CONFIGURE_ARGS+= ${ABI:D--with-mips-abi=${ABI}}
CONFIGURE_ENV+= COMPILE_ET=no # build Heimdal's compile_et(1)
-# XXX Grand Central Dispatch is broken in 1.4
-CONFIGURE_ENV+= ac_cv_funclib_dispatch_async_f=no
.include "../../mk/bdb.buildlink3.mk"
@@ -71,11 +62,7 @@
.include "../../mk/readline.buildlink3.mk"
-.if ${READLINE_TYPE} == "readline"
CONFIGURE_ARGS+= --with-readline=${BUILDLINK_PREFIX.editlinereadline}
-.elif ${READLINE_TYPE} == "editline"
-CONFIGURE_ARGS+= --with-libedit=${BUILDLINK_PREFIX.editlinereadline}
-.endif
PLIST_VARS+= glob vis hcrypto afskauth
@@ -90,7 +77,7 @@
OWN_DIRS_PERMS= ${HEIMDAL_HDB_DIR} ${REAL_ROOT_USER} ${REAL_ROOT_GROUP} 0700
SPECIAL_PERMS+= ${PREFIX}/bin/otp ${SETUID_ROOT_PERMS}
-SPECIAL_PERMS= ${PREFIX}/bin/${KRB5_PREFIX}su ${SETUID_ROOT_PERMS}
+SPECIAL_PERMS+= ${PREFIX}/bin/${KRB5_PREFIX}su ${SETUID_ROOT_PERMS}
RCD_SCRIPTS= kadmind kcm kdc kpasswdd
INFO_FILES= yes
@@ -102,10 +89,6 @@
${GREP} -e /hcrypto_ -e /page_ manpages > manpages.new && \
mv manpages.new manpages
-# Avoid 'cat: cannot open ./localefiles: No such file or directory'
-pre-build:
- ${TOUCH} ${WRKSRC}/po/localefiles
-
.include "../../databases/sqlite3/buildlink3.mk"
PLIST.hcrypto= yes
@@ -128,10 +111,10 @@
PTHREAD_AUTO_VARS= yes
.endif
-post-install:
- ${LN} -s heimdal-gssapi.pc ${DESTDIR}${PREFIX}/lib/pkgconfig/krb5-gssapi.pc
-
.include "../../mk/termcap.buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/readline.buildlink3.mk"
+.include "../../security/openssl/buildlink3.mk"
+# integrated editline configure script that always runs checks for this
+.include "../../mk/curses.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff -r 710c833a96bb -r 0b8bcc86c462 security/heimdal/PLIST
--- a/security/heimdal/PLIST Thu Oct 21 07:31:56 2021 +0000
+++ b/security/heimdal/PLIST Thu Oct 21 07:46:02 2021 +0000
@@ -1,29 +1,25 @@
-@comment $NetBSD: PLIST,v 1.25 2021/05/09 16:04:34 thor Exp $
+@comment $NetBSD: PLIST,v 1.26 2021/10/21 07:46:02 wiz Exp $
bin/afslog
-bin/compile_et
+bin/bsearch
bin/gsstool
+bin/heimtools
bin/hxtool
bin/idn-lookup
-bin/kcc
+bin/kadmin
bin/kdestroy
bin/kf
-bin/kftp
bin/kgetcred
bin/kinit
bin/klist
bin/kpasswd
bin/krb5-config
-bin/${KRB5_PREFIX}login
bin/kswitch
+bin/ktutil
bin/otp
bin/otpprint
bin/pagsh
-bin/pfrom
-bin/${KRB5_PREFIX}rcp
-bin/${KRB5_PREFIX}rsh
bin/string2key
bin/${KRB5_PREFIX}su
-bin/${KRB5_PREFIX}telnet
bin/verify_krb5_conf
include/krb5/asn1-common.h
include/krb5/asn1_err.h
@@ -55,6 +51,8 @@
${PLIST.hcrypto}include/krb5/hcrypto/engine.h
${PLIST.hcrypto}include/krb5/hcrypto/evp-cc.h
${PLIST.hcrypto}include/krb5/hcrypto/evp-hcrypto.h
+${PLIST.hcrypto}include/krb5/hcrypto/evp-openssl.h
+${PLIST.hcrypto}include/krb5/hcrypto/evp-pkcs11.h
${PLIST.hcrypto}include/krb5/hcrypto/evp.h
${PLIST.hcrypto}include/krb5/hcrypto/hmac.h
${PLIST.hcrypto}include/krb5/hcrypto/md2.h
@@ -67,6 +65,7 @@
${PLIST.hcrypto}include/krb5/hcrypto/rsa.h
${PLIST.hcrypto}include/krb5/hcrypto/sha.h
${PLIST.hcrypto}include/krb5/hcrypto/ui.h
+${PLIST.hcrypto}include/krb5/hcrypto/undef.h
include/krb5/hdb-protos.h
include/krb5/hdb.h
include/krb5/hdb_asn1.h
@@ -91,11 +90,12 @@
include/krb5/kafs.h
include/krb5/kdc-protos.h
include/krb5/kdc.h
-include/krb5/krb5-private.h
include/krb5/krb5-protos.h
include/krb5/krb5-types.h
include/krb5/krb5.h
+include/krb5/krb5/an2ln_plugin.h
include/krb5/krb5/ccache_plugin.h
+include/krb5/krb5/db_plugin.h
include/krb5/krb5/locate_plugin.h
include/krb5/krb5/send_to_kdc_plugin.h
include/krb5/krb5/windc_plugin.h
@@ -146,7 +146,14 @@
lib/libsl.la
lib/libwind.la
lib/pkgconfig/heimdal-gssapi.pc
+lib/pkgconfig/heimdal-kadm-client.pc
+lib/pkgconfig/heimdal-kadm-server.pc
+lib/pkgconfig/heimdal-krb5.pc
+lib/pkgconfig/kadm-client.pc
+lib/pkgconfig/kadm-server.pc
+lib/pkgconfig/kafs.pc
lib/pkgconfig/krb5-gssapi.pc
+lib/pkgconfig/krb5.pc
lib/windc.la
libexec/digest-service
libexec/heimdal/asn1_compile
@@ -161,44 +168,27 @@
libexec/kdc
libexec/kdigest
libexec/kfd
-libexec/kftpd
libexec/kimpersonate
libexec/kpasswdd
-libexec/popper
-libexec/push
-libexec/${KRB5_PREFIX}rshd
-libexec/${KRB5_PREFIX}telnetd
man/man1/afslog.1
+man/man1/bsearch.1
+man/man1/kadmin.1
man/man1/kdestroy.1
man/man1/kf.1
-man/man1/kftp.1
man/man1/kgetcred.1
man/man1/kinit.1
man/man1/klist.1
man/man1/kpasswd.1
man/man1/krb5-config.1
man/man1/kswitch.1
-man/man1/kx.1
-man/man1/${KRB5_PREFIX}login.1
+man/man1/ktutil.1
man/man1/otp.1
man/man1/otpprint.1
man/man1/pagsh.1
-man/man1/pfrom.1
-man/man1/${KRB5_PREFIX}rcp.1
-man/man1/${KRB5_PREFIX}rsh.1
-man/man1/rxtelnet.1
-man/man1/rxterm.1
man/man1/${KRB5_PREFIX}su.1
-man/man1/${KRB5_PREFIX}telnet.1
-man/man1/tenletxr.1
-man/man1/xnlock.1
man/man3/HDB.3
-man/man3/__gss_c_attr_stream_sizes_oid_desc.3
man/man3/arg_printusage.3
-man/man3/challenge.3
-man/man3/context.3
man/man3/data.3
-man/man3/domain.3
man/man3/ecalloc.3
man/man3/emalloc.3
man/man3/eread.3
@@ -206,7 +196,6 @@
man/man3/esetenv.3
man/man3/estrdup.3
man/man3/ewrite.3
-man/man3/flags.3
man/man3/getarg.3
man/man3/gss_accept_sec_context.3
man/man3/gss_acquire_cred.3
@@ -292,6 +281,7 @@
man/man3/hdb_password.3
man/man3/hdb_remove.3
man/man3/hdb_rename.3
+man/man3/hdb_set_sync.3
man/man3/hdb_store.3
man/man3/hdb_unlock.3
man/man3/heim_ntlm_build_ntlm1_master.3
@@ -313,7 +303,7 @@
man/man3/heim_ntlm_nt_key.3
man/man3/heim_ntlm_ntlmv2_key.3
man/man3/heim_ntlm_verify_ntlm2.3
-man/man3/hostname.3
+man/man3/heimbase.3
man/man3/hx509.3
man/man3/hx509_bitstring_print.3
man/man3/hx509_ca.3
@@ -336,6 +326,7 @@
man/man3/hx509_ca_tbs_set_notBefore.3
man/man3/hx509_ca_tbs_set_proxy.3
man/man3/hx509_ca_tbs_set_serialnumber.3
+man/man3/hx509_ca_tbs_set_signature_algorithm.3
man/man3/hx509_ca_tbs_set_spki.3
man/man3/hx509_ca_tbs_set_subject.3
man/man3/hx509_ca_tbs_set_template.3
@@ -475,7 +466,7 @@
man/man3/hx509_verify_set_time.3
man/man3/hx509_verify_signature.3
man/man3/hx509_xfree.3
-man/man3/internalvsmechname.3
+man/man3/internal_v_smechname.3
man/man3/k_afs_cell_of_file.3
man/man3/k_hasafs.3
man/man3/k_hasafs_recheck.3
@@ -497,6 +488,8 @@
man/man3/krb5_425_conv_principal.3
man/man3/krb5_425_conv_principal_ext.3
man/man3/krb5_524_conv_principal.3
+man/man3/krb5_abort.3
+man/man3/krb5_abortx.3
man/man3/krb5_acc_ops.3
man/man3/krb5_acl_match_file.3
man/man3/krb5_acl_match_string.3
@@ -696,6 +689,7 @@
man/man3/krb5_data_free.3
man/man3/krb5_data_realloc.3
man/man3/krb5_data_zero.3
+man/man3/krb5_dcc_ops.3
man/man3/krb5_decrypt.3
Home |
Main Index |
Thread Index |
Old Index