You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by co...@apache.org on 2015/02/04 12:43:59 UTC

directory-kerberos git commit: Some trivial grammatical changes + haox -> kerby in the README

Repository: directory-kerberos
Updated Branches:
  refs/heads/master 64404d7ac -> 8423c04de


Some trivial grammatical changes + haox -> kerby in the README


Project: http://git-wip-us.apache.org/repos/asf/directory-kerberos/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-kerberos/commit/8423c04d
Tree: http://git-wip-us.apache.org/repos/asf/directory-kerberos/tree/8423c04d
Diff: http://git-wip-us.apache.org/repos/asf/directory-kerberos/diff/8423c04d

Branch: refs/heads/master
Commit: 8423c04deff1a7b8fed249afe0ded58feeaee0a6
Parents: 64404d7
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Wed Feb 4 11:43:10 2015 +0000
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Wed Feb 4 11:43:10 2015 +0000

----------------------------------------------------------------------
 README.md | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-kerberos/blob/8423c04d/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 32a1fff..0f81606 100644
--- a/README.md
+++ b/README.md
@@ -15,27 +15,27 @@
 # specific language governing permissions and limitations
 # under the License.
 
-Haox
-====
+Apache Kerby
+============
 
-Haox aims for a Java Kerberos binding, and provides richful, inituitive and interoperable implementation, library and various facilities that integrate Kerberos, PKI and token (OAuth) as desired in modern environments such as mobile, cloud and Hadoop. 
+Apache Kerby is a Java Kerberos binding. It provides a rich, intuitive and interoperable implementation, library and various facilities that integrate Kerberos, PKI and token (OAuth) as desired in modern environments such as mobile, cloud and Hadoop. 
 
 ### The Initiatives/Goals 
-* Aims as a Java Kerberos binding, with richful and integrated facilities that integrate Kerberos, PKI and token (OAuth) for both client and server sides.
-+ Provides client APIs in Kerberos protocol level to interact with a KDC server thru AS and TGS exchanges.
-+ Provides an embeded KDC server that applications can easily integrate into products, unit tests or integration tests.
+* Aims as a Java Kerberos binding, with rich and integrated facilities that integrate Kerberos, PKI and token (OAuth) for both client and server sides.
++ Provides client APIs at the Kerberos protocol level to interact with a KDC server through AS and TGS exchanges.
++ Provides an embedded KDC server that applications can easily integrate into products, unit tests or integration tests.
 + Supports FAST/Preauthentication framework to allow popular and useful authentication mechanisms.
-+ Supports PKINIT mechanism to allow clients to request tickets using x509 certificate credential.
++ Supports PKINIT mechanism to allow clients to request tickets using x509 certificate credentials.
 + Supports Token Preauth mechanism to allow clients to request tickets using JWT tokens.
 + Provides support for JAAS, GSSAPI and SASL frameworks that applications can leverage.
-+ Least dependency, the core part is ensured to depend only on JRE, for easy use and maintain.
++ Minimal dependencies, the core part is ensured to depend only on JRE, for easy use and maintenance.
 
 ### Update
 We’re collaborating with ApacheDS community and preparing this project to be ready for a sub project. Feedback is welcome.
 
 ### Status
 As follows, with the core and critical parts done, important features are still ongoing.
-It's going to release 0.1 version in the early next year. We do not suggest production usage prior to the release.
+The 0.1 version will be released early next year. We do not suggest production usage prior to the release.
 <pre>
 ASN-1 (done)
 Kerberos core and codec (done)
@@ -48,7 +48,7 @@ PKINIT (ongoing)
 Keytab util (credential cache and keytab support, done)
 </pre>
 
-### Desired KrbClient APIs (partialy done)
+### Desired KrbClient APIs (partially done)
 * Initiate a KrbClient
 <pre>
 KrbClient krbClient = new KrbClient(kdcHost, kdcPort);
@@ -74,13 +74,13 @@ krbClient.requestServiceTicket(tgt, serverPrincipal);
 krbClient.requestServiceTicket(accessToken, serverPrincipal);
 </pre>
 
-### The ASN-1 support
-Please look at [haox-asn1](https://github.com/drankye/haox/blob/master/haox-asn1/README.md) for details.
+### ASN-1 support
+Please look at [kerby-asn1](https://git-wip-us.apache.org/repos/asf?p=directory-kerberos.git;a=blob;f=kerby-asn1/README.md;h=eb35929d15bc88e91063df9ed0de78ae8fc255eb;hb=HEAD) for details.
 
 ### Kerberos Crypto and Encryption Types
 Implementing des, des3, rc4, aes, camellia encryption and corresponding checksum types
 Interoperates with MIT Kerberos and Microsoft AD
-Independent with Kerberos codes in JRE, but rely on JCE
+Independent of Kerberos code in JRE, but rely on JCE
 
 | Encryption Type | Description |
 | --------------- | ----------- |
@@ -102,13 +102,13 @@ Independent with Kerberos codes in JRE, but rely on JCE
 | camellia | The Camellia family: camellia256-cts-cmac and camellia128-cts-cmac |
 
 ### Dependency
-The core part is ensured to only depend on JRE. Every external dependency is taken carefully and maintained separately.
+The core part is ensured to only depend on the JRE. Every external dependency is taken carefully and maintained separately.
 
 ##### Contrib Projects
-- haox-asn1. A model driven ASN-1 encoding and decoding framework
-- haox-event. A pure event driven application framework aiming to construct applications of asynchronous and concurrent handlers. It includes UDP and TCP transport based on pure Java NIO and concurrency pattern.
-- haox-config. A unified configuration API that aims to support various configuration file formats, like XML, JNI, CSV and Java Properties file.
-- haox-token. Implements a JWT token API for Kerberos that's defined in TokenPreauth drafts.
+- kerby-asn1. A model driven ASN-1 encoding and decoding framework
+- kerby-event. A pure event driven application framework aiming to construct applications of asynchronous and concurrent handlers. It includes UDP and TCP transports based on pure Java NIO and concurrency pattern.
+- kerby-config. A unified configuration API that aims to support various configuration file formats, like XML, JNI, CSV and Java Properties file.
+- kerby-token. Implements a JWT token API for Kerberos that's defined in TokenPreauth drafts.
 
 ### License
 Apache License V2.0