Heimdal 1.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Heimdal 1.1 (Default branch)
# 1  
Old 05-08-2008
Heimdal 1.1 (Default branch)

Heimdal is an implementation of Kerberos 5 thataims to be protocol compatible with existingimplementations and RFC 4120. It supports KerberosV5 over GSS-API (RFC 1964) and PK-INIT (smartcardsupport) for Kerberos, and includes a number ofimportant and useful applications (rsh, telnet,popper, etc.). Heimdal also contains an ASN.1compiler, X.509 library, and NTLM (v1 and v2)library.License: BSD License (original)Changes:
Read-only PKCS11 provider is built in to hx509. Documentation for hx509, hcrypto, and ntlm libraries was improved. Better compatibilty with Windows 2008 Server pre-releases and Vista. Mac OS X 10.5 support for native credential cache. A pkg-config file for Heimdal (heimdal-gssapi.pc). Several bugs were fixed.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Solaris

Heimdal kerberos and Solaris 8 Client

Hi, I have been trying to have a solaris 8 client authenticate to a Suse Linux KDC (heimdal) via SEAM. Everything works fine, I can login with a principal using kinit or via PAM and get tgt. However I can't use kadmin or kpasswd from the solaris client. The error received is Client/Server real... (0 Replies)
Discussion started by: perezive
0 Replies
Login or Register to Ask a Question
Heimdal Kerberos 5 error reporting functions(3) 	      HeimdalKerberos5library		   Heimdal Kerberos 5 error reporting functions(3)

NAME
Heimdal Kerberos 5 error reporting functions - Functions KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_eai_to_heim_errno (int eai_errno, int system_error) KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_h_errno_to_heim_errno (int eai_errno) KRB5_LIB_FUNCTION void KRB5_LIB_CALL krb5_clear_error_message (krb5_context context) KRB5_LIB_FUNCTION void KRB5_LIB_CALL krb5_set_error_message (krb5_context context, krb5_error_code ret, const char *fmt,...) __attribute__((format(printf KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_vwarn (krb5_context context, krb5_error_code code, const char *fmt, va_list ap) __attribute__((format(printf Detailed Description Function Documentation KRB5_LIB_FUNCTION void KRB5_LIB_CALL krb5_clear_error_message (krb5_context context) Clears the error message from the Kerberos 5 context. Parameters: context The Kerberos 5 context to clear KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_eai_to_heim_errno (int eai_errno, int system_error) Convert the getaddrinfo() error code to a Kerberos et error code. Parameters: eai_errno contains the error code from getaddrinfo(). system_error should have the value of errno after the failed getaddrinfo(). Returns: Kerberos error code representing the EAI errors. KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_h_errno_to_heim_errno (int eai_errno) Convert the gethostname() error code (h_error) to a Kerberos et error code. Parameters: eai_errno contains the error code from gethostname(). Returns: Kerberos error code representing the gethostname errors. KRB5_LIB_FUNCTION void KRB5_LIB_CALL krb5_set_error_message (krb5_context context, krb5_error_code ret, const char * fmt, ...) Set the context full error string for a specific error code. The error that is stored should be internationalized. The if context is NULL, no error string is stored. Parameters: context Kerberos 5 context ret The error code fmt Error string for the error code ... printf(3) style parameters. KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_vwarn (krb5_context context, krb5_error_code code, const char * fmt, va_list ap) Log a warning to the log, default stderr, include the error from the last failure. Parameters: context A Kerberos 5 context. code error code of the last error fmt message to print ap arguments Version 1.5.2 11 Jan 2012 Heimdal Kerberos 5 error reporting functions(3)