Nenhuma descrição

Jonathan Turner 3bfb2adb52 fix example and reuse of http.Default client (#370) 6 anos atrás
.github 3196640dcd Version 8 6 anos atrás
asn1tools 81c03155ec support big.Int for iterations within key derivation 8 anos atrás
client f28be450e3 revert v7 API breaking changes 6 anos atrás
config f28be450e3 revert v7 API breaking changes 6 anos atrás
credentials f28be450e3 revert v7 API breaking changes 6 anos atrás
crypto a6e3edd1c8 refactor API 7 anos atrás
examples f28be450e3 revert v7 API breaking changes 6 anos atrás
gssapi f28be450e3 revert v7 API breaking changes 6 anos atrás
iana a6e3edd1c8 refactor API 7 anos atrás
kadmin a6e3edd1c8 refactor API 7 anos atrás
keytab f28be450e3 revert v7 API breaking changes 6 anos atrás
krberror f28be450e3 revert v7 API breaking changes 6 anos atrás
messages f28be450e3 revert v7 API breaking changes 6 anos atrás
pac f28be450e3 revert v7 API breaking changes 6 anos atrás
service f28be450e3 revert v7 API breaking changes 6 anos atrás
spnego f28be450e3 revert v7 API breaking changes 6 anos atrás
test 50a61c6f22 use canonical name to derive SPN (#274) 7 anos atrás
types 3d2f1b3559 lint fixes 7 anos atrás
v8 3bfb2adb52 fix example and reuse of http.Default client (#370) 6 anos atrás
.gitignore 95ab435b4c initial commit 9 anos atrás
CONTRIBUTING.md 12682928eb Fix some codespell issues 7 anos atrás
LICENSE caee2dc83a Initial commit 9 anos atrás
README.md 3528c97d63 update for godoc 6 anos atrás
USAGE.md 3f6e444316 update usage doc to make it clear which version it relates to 6 anos atrás
gokrb5.go 56d95dcbd4 godoc fix 6 anos atrás

README.md

gokrb5

It is recommended to use the latest version: Version

Development will be focused on the latest major version. New features will only be targeted at this version.

Versions Dependency Management Import Path Usage Godoc Go Report Card
v8 Go modules import "github.com/jcmturner/gokrb5/v8/{sub-package}" Usage GoDoc Go Report Card
v7 gopkg.in import "gopkg.in/jcmturner/gokrb5.v7/{sub-package}" Usage GoDoc Go Report Card

Go Version Support

Go version Go version Go version

gokrb5 may work with other versions of Go but they are not tested.

Features

  • Pure Go - no dependency on external libraries
  • No platform specific code
  • Server Side
    • HTTP handler wrapper implements SPNEGO Kerberos authentication
    • HTTP handler wrapper decodes Microsoft AD PAC authorization data
  • Client Side
    • Client that can authenticate to an SPNEGO Kerberos authenticated web service
    • Ability to change client's password
  • General
    • Kerberos libraries for custom integration
    • Parsing Keytab files
    • Parsing krb5.conf files
    • Parsing client credentials cache files such as /tmp/krb5cc_$(id -u $(whoami))

Implemented Encryption & Checksum Types

Implementation Encryption ID Checksum ID RFC
des3-cbc-sha1-kd 16 12 3961
aes128-cts-hmac-sha1-96 17 15 3962
aes256-cts-hmac-sha1-96 18 16 3962
aes128-cts-hmac-sha256-128 19 19 8009
aes256-cts-hmac-sha384-192 20 20 8009
rc4-hmac 23 -138 4757

The following is working/tested:

  • Tested against MIT KDC (1.6.3 is the oldest version tested against) and Microsoft Active Directory (Windows 2008 R2)
  • Tested against a KDC that supports PA-FX-FAST.
  • Tested against users that have pre-authentication required using PA-ENC-TIMESTAMP.
  • Microsoft PAC Authorization Data is processed and exposed in the HTTP request context. Available if Microsoft Active Directory is used as the KDC.

Contributing

If you are interested in contributing to gokrb5, great! Please read the contribution guidelines.


References

Useful Links

Thanks

  • Greg Hudson from the MIT Consortium for Kerberos and Internet Trust for providing useful advice.

Contributing

Thank you for your interest in contributing to gokrb5 please read the contribution guide as it should help you get started.

Known Issues

Issue Worked around? References
The Go standard library's encoding/asn1 package cannot unmarshal into slice of asn1.RawValue Yes https://github.com/golang/go/issues/17321
The Go standard library's encoding/asn1 package cannot marshal into a GeneralString Yes - using https://github.com/jcmturner/gofork/tree/master/encoding/asn1 https://github.com/golang/go/issues/18832
The Go standard library's encoding/asn1 package cannot marshal into slice of strings and pass stringtype parameter tags to members Yes - using https://github.com/jcmturner/gofork/tree/master/encoding/asn1 https://github.com/golang/go/issues/18834
The Go standard library's encoding/asn1 package cannot marshal with application tags Yes
The Go standard library's x/crypto/pbkdf2.Key function uses the int type for iteraction count limiting meaning the 4294967296 count specified in https://tools.ietf.org/html/rfc3962 section 4 cannot be met on 32bit systems Yes - using https://github.com/jcmturner/gofork/tree/master/x/crypto/pbkdf2 https://go-review.googlesource.com/c/crypto/+/85535