This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

public_decrypt

        # OpenSSL::PKey::RSA.public_decrypt

(from ruby core)
### Implementation from RSA
---
    rsa.public_decrypt(string)          -> String
    rsa.public_decrypt(string, padding) -> String

---

Decrypt `string`, which has been encrypted with the private key, with
the public key.  `padding` defaults to PKCS1_PADDING.

**Deprecated in version 3.0**. Consider using PKey::PKey#sign_raw and
PKey::PKey#verify_raw, and PKey::PKey#verify_recover instead.



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.