Update of /cvsroot/perl-openssl/Crypt/OpenSSL/RSA
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17303
Modified Files:
README
Log Message:
*) document new get_public_key_x509_string method
*) add comment about including kerberos headers when building
*) update copyright
Index: README
===================================================================
RCS file: /cvsroot/perl-openssl/Crypt/OpenSSL/RSA/README,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** README 27 Apr 2003 20:03:53 -0000 1.9
--- README 15 Feb 2004 20:32:01 -0000 1.10
***************
*** 1,9 ****
Crypt::OpenSSL::RSA is an XS perl module designed to provide basic RSA
functionality. It does this by providing a glue to the RSA functions
! in the openSSL library. In particular, it provides the following functions:
new_public_key, new_private_key - create a key from a string
generate_key - make a new key
! get_public_key_string, get_private_key_string - save a key to a string
encrypt, decrypt, sign, verify,
use_pkcs1_oaep_padding, use_pkcs1_padding,
--- 1,13 ----
Crypt::OpenSSL::RSA is an XS perl module designed to provide basic RSA
functionality. It does this by providing a glue to the RSA functions
! in the OpenSSL library. In particular, it provides the following functions:
new_public_key, new_private_key - create a key from a string
generate_key - make a new key
! get_private_key_string - save key to a string
! get_public_key_string - save public portion of key to a string
! get_public_key_x509_string - save public portion of key to a string,
! using format compatibe with OpenSSL's
! command-line rsa tool
encrypt, decrypt, sign, verify,
use_pkcs1_oaep_padding, use_pkcs1_padding,
***************
*** 19,26 ****
not yet implemented.
- There is no support for encrypting text larger than the key-size.
-
There is no Crypt::CBC support.
NOTE: as of version 0.17, the following methods are DEPRECATED:
- the no-arg new constructor - use new_from_public_key,
--- 23,35 ----
not yet implemented.
There is no Crypt::CBC support.
+ (Reported by Max Baker <ma...@wa...>) For making under Redhat 8
+ or 9 you may need to supply the include path to the kerberos header
+ files when running make
+
+ make C_INCLUDE_PATH=/usr/kerberos/include
+
+
NOTE: as of version 0.17, the following methods are DEPRECATED:
- the no-arg new constructor - use new_from_public_key,
***************
*** 41,45 ****
http://perl-openssl.sourceforge.net/.
! Copyright (c) 2001-2003 Ian Robertson. Crypt::OpenSSL::RSA is free
software; you may redistribute it and/or modify it under the same
terms as Perl itself.
--- 50,54 ----
http://perl-openssl.sourceforge.net/.
! Copyright (c) 2001-2004 Ian Robertson. Crypt::OpenSSL::RSA is free
software; you may redistribute it and/or modify it under the same
terms as Perl itself.
|