Skip to content

technoweenie/pki

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pki

Amazingly simple pki encryption, using undocumented OpenSSL functions. Use public keys to encrypt data, and private keys to decrypt them.

# uses a randomly generated RSA private key
pki = Pki.new
encrypted = pki.encrypt('monkey')
pki.decrypt(encrypted) == 'monkey'

# load a private key from a stream.
# if no public key is specified, a new one is created using the existing
# private key.
pki = Pki.new(:private_key => File.open('my_priv_key'))

# load private/public keys
pki = Pki.new :private_key => "-----BEGIN RSA PRIVATE KEY-----\n..."
pki.public_key = OpenSSL::PKey::RSA.new(...)

# you can pretty much load private keys from strings, from streams, or PKey 
objects that respond to #public_encrypt and #private_decrypt.

Copyright © 2009 rick. See LICENSE for details.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages