I’m looking for a ruby openssl module that implements most of the
openssl crypto library, including public/private key
management/encryption as well as the x509 certificate functionality.
Basically everything you need for a certificate authority. Any
suggestions?
On 6/24/06, snacktime [email protected] wrote:
I’m looking for a ruby openssl module that implements most of the
openssl crypto library, including public/private key
management/encryption as well as the x509 certificate functionality.
Basically everything you need for a certificate authority. Any
suggestions?
Have you looked in the standard library?
-austin
Have you looked in the standard library?
Was just looking at it now, didn’t realize it was there.
Documentation is sparse, so I’ll have to read through the source to
see how it works.
If you just want to set up a low-volume private C/A, you don’t need to
write
any code. The functionality is built into openssl on command-line tools.
On 6/24/06, Francis C. [email protected] wrote:
If you just want to set up a low-volume private C/A, you don’t need to write
any code. The functionality is built into openssl on command-line tools.
That’s what we have used for a few years, but since we are redoing the
whole front end anyways it won’t take much work to write the code, and
it wil be a lot cleaner.
chris