Update of /cvsroot/perl-ldap/ldap/lib/Net
In directory sc8-pr-cvs1:/tmp/cvs-serv13586
Modified Files:
LDAP.pod
Log Message:
Change decryptkey to keydecrypt. Didn't we do this once already?
Index: LDAP.pod
===================================================================
RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP.pod,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- LDAP.pod 12 Oct 2003 08:32:03 -0000 1.34
+++ LDAP.pod 10 Nov 2003 18:31:04 -0000 1.35
@@ -640,7 +640,7 @@
=item clientkey =E<gt> '/path/to/key.pem'
-=item decryptkey =E<gt> sub { ... }
+=item keydecrypt =E<gt> sub { ... }
If you want to use the client to offer a certificate to the server for
SSL authentication (which is not the same as for the LDAP Bind
@@ -648,7 +648,7 @@
clientkey to the user's private key file. These files must be in PEM
format.
-If the private key is encrypted (highly recommended) then decryptkey
+If the private key is encrypted (highly recommended) then keydecrypt
should be a subroutine that returns the decrypting key. For example:
$ldap = Net::LDAP->new( 'myhost.example.com', version => 3 );
@@ -656,7 +656,7 @@
verify => 'require',
clientcert => 'mycert.pem',
clientkey => 'mykey.pem',
- decryptkey => sub { 'secret'; },
+ keydecrypt => sub { 'secret'; },
capath => '/usr/local/cacerts/'
);
|