From: Graham B. <gb...@po...> - 2002-07-01 17:10:09
|
On Mon, Jul 01, 2002 at 12:44:51PM -0400, Matt Selsky wrote: > The patch to Net::LDAP::ASN should add the kerberos ASN1. > > @@ -165,7 +165,8 @@ > > AuthenticationChoice ::= CHOICE { > simple [0] OCTET STRING, > - -- 1 and 2 reserved > + krbv42LDAP [1] OCTET STRING, > + krbv42DSA [2] OCTET STRING, > sasl [3] SaslCredentials } > > SaslCredentials ::= SEQUENCE { > > What else would need to be added to the package to allow you to do > kerberized auth? Btw, I got the ASN1 values from RFC 1777[1]. You mean use the OLD krb4 authentication. To do that all that needs to be done is to add those fields as krbv41 [1] OCTET STRING, krbv42 [2] OCTET STRING, You can then use krb41password and krb42password arguments to the bind method. Graham. |