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

to_pem

        # OpenSSL::PKey::DSA.to_pem

(from ruby core)
### Implementation from DSA
---
    to_pem(*args)

---

Encodes this DSA to its PEM encoding.

### Parameters
*   *cipher* is an OpenSSL::Cipher.
*   *password* is a string containing your password.


### Examples
    DSA.to_pem -> aString
    DSA.to_pem(cipher, 'mypassword') -> aString


(This method is an alias for OpenSSL::PKey::DSA#export.)

Encodes this DSA to its PEM encoding.

### Parameters
*   *cipher* is an OpenSSL::Cipher.
*   *password* is a string containing your password.


### Examples
    DSA.to_pem -> aString
    DSA.to_pem(cipher, 'mypassword') -> aString



      

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.