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

purpose=

        # OpenSSL::X509::Store.purpose=

(from ruby core)
### Implementation from Store
---
    store.purpose = purpose

---

Sets the store's default verification purpose. If specified, the
verifications on the store will check every certificate's extensions are
consistent with the purpose. The purpose is specified by constants:

*   X509::PURPOSE_SSL_CLIENT
*   X509::PURPOSE_SSL_SERVER
*   X509::PURPOSE_NS_SSL_SERVER
*   X509::PURPOSE_SMIME_SIGN
*   X509::PURPOSE_SMIME_ENCRYPT
*   X509::PURPOSE_CRL_SIGN
*   X509::PURPOSE_ANY
*   X509::PURPOSE_OCSP_HELPER
*   X509::PURPOSE_TIMESTAMP_SIGN


OpenSSL::X509::StoreContext#purpose= can be used to change the value for
a single verification operation.

See also the man page X509_VERIFY_PARAM_set_purpose(3).



      

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.