From: Matt S. <se...@co...> - 2002-07-01 17:20:19
|
> 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. I changed ASN.pm as you suggested and then used this code to bind: $ldap->bind( 'user=selsky, o=Columbia University, c=US', krbv42 => 1 ); And I get the error message: No AUTH supplied According to the rfc, you need to pass the return of krb_mk_req(). How do I get that? Do I need to write XS code to call that function and then pass that value back? |