home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / doc / libcrypt-openssl-rsa-perl / README < prev   
Encoding:
Text File  |  2005-11-14  |  1.1 KB  |  25 lines

  1. Crypt::OpenSSL::RSA is an XS perl module designed to provide basic RSA
  2. functionality.  It does this by providing a glue to the RSA functions
  3. in the OpenSSL library.  In particular, it provides the following functions:
  4.  
  5.        new_public_key, new_private_key - create a key from a string
  6.        generate_key - make a new key
  7.        get_private_key_string - save key to a string
  8.        get_public_key_string - save public portion of key to a string
  9.        get_public_key_x509_string - save public portion of key to a string,
  10.                                     using format compatibe with OpenSSL's
  11.                                     command-line rsa tool
  12.        encrypt, decrypt, private_encrypt, public_decrypt, sign, verify,
  13.        use_pkcs1_oaep_padding, use_pkcs1_padding,
  14.        use_sslv23_padding, use_no_padding
  15.        use_md5_hash, use_sha1_hash, use_ripemd160_hash
  16.        size - Returns the size, in bytes, of the key.
  17.        check_key - checks the validity of a key.
  18.  
  19. Bugs:
  20.   There is no Crypt::CBC support.
  21.  
  22. Copyright (c) 2001-2005 Ian Robertson.  Crypt::OpenSSL::RSA is free
  23. software; you may redistribute it and/or modify it under the same
  24. terms as Perl itself.
  25.