DSA.new([size | string [, pass]) â dsa
Class Public methods
Creates a new DSA instance by reading an existing
key from string
.
Parameters
-
size
is an integer representing the desired key size. -
string
contains a DER or PEM encoded key. -
pass
is a string that contains an optional password.
Examples
1 2 3 4 | DSA . new -> dsa DSA . new ( 1024 ) -> dsa DSA . new ( File .read( 'dsa.pem' )) -> dsa DSA . new ( File .read( 'dsa.pem' ), 'mypassword' ) -> dsa |
Please login to continue.