Jonathan Turner 6 лет назад
Родитель
Сommit
56d95dcbd4
2 измененных файлов с 37 добавлено и 11 удалено
  1. 10 10
      gokrb5.go
  2. 27 1
      v8/gokrb5.go

+ 10 - 10
gokrb5.go

@@ -5,24 +5,24 @@ This is a pure Go implementation and does not have dependencies on native librar
 
 
 Feature include:
 Feature include:
 
 
-* Server Side
+Server Side
 
 
-  * HTTP handler wrapper implements SPNEGO Kerberos authentication
+HTTP handler wrapper implements SPNEGO Kerberos authentication.
 
 
-  * HTTP handler wrapper decodes Microsoft AD PAC authorization data
+HTTP handler wrapper decodes Microsoft AD PAC authorization data.
 
 
-* Client Side
+Client Side
 
 
-  * Client that can authenticate to an SPNEGO Kerberos authenticated web service
+Client that can authenticate to an SPNEGO Kerberos authenticated web service.
 
 
-  * Ability to change client's password
+Ability to change client's password.
 
 
-* General
+General
 
 
-  * Kerberos libraries for custom integration
+Kerberos libraries for custom integration.
 
 
-  * Parsing Keytab files
+Parsing Keytab files.
 
 
-  * Parsing krb5.conf files
+Parsing krb5.conf files.
 */
 */
 package gokrb5
 package gokrb5

+ 27 - 1
v8/gokrb5.go

@@ -1,2 +1,28 @@
-// Package gokrb5 provides a Kerberos 5 implementation for Go
+/*
+Package gokrb5 provides a Kerberos 5 implementation for Go.
+
+This is a pure Go implementation and does not have dependencies on native libraries.
+
+Feature include:
+
+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.
+*/
 package gokrb5
 package gokrb5