new

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

DSA.new -> dsa
DSA.new(1024) -> dsa
DSA.new(File.read('dsa.pem')) -> dsa
DSA.new(File.read('dsa.pem'), 'mypassword') -> dsa
doc_ruby_on_rails
2015-04-25 15:56:01
Comments
Leave a Comment

Please login to continue.