rsa-converter/README.md

21 lines
596 B
Markdown
Raw Normal View History

2014-07-20 04:10:30 +02:00
pubkey-converter
================
2014-07-20 04:07:20 +02:00
This is a script that will convert RSA public keys to and from various formats.
usage: ./pubkey-converter.pl [-hrcp] < file
-h : print this message
-r : output public key in Base64 RFC 3110 format
-d : output public key in hexadecimal DER format
-p : output public key in PEM format
## System requirements
* OpenSSL
* Perl
* CPAN modules:
* Crypt::OpenSSL::RSA
* Crypt::OpenSSL::Bignum
2014-07-22 05:54:55 +02:00
* Parse::RecDescent
### Debian-based systems
`apt-get install libcrypt-openssl-bignum-perl libcrypt-openssl-rsa-perl libparse-recdescent-perl`