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

verify_raw

        # OpenSSL::PKey::PKey.verify_raw

(from ruby core)
### Implementation from PKey
---
    pkey.verify_raw(digest, signature, data [, options]) -> true or false

---

Verifies the `signature` for the `data` using a public key `pkey`.
Unlike #verify, this method will not hash `data` with `digest`
automatically.

Returns `true` if the signature is successfully verified, `false`
otherwise. The caller must check the return value.

See #sign_raw for the signing operation and an example code.

Added in version 3.0. See also the man page EVP_PKEY_verify(3).

`signature`
:   A String containing the signature to be verified.




      

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.