module SSHCertParser
Constants
- VERSION
Public Class Methods
from_file(file)
click to toggle source
# File lib/ssh_cert_parser.rb, line 6 def from_file(file) SSHCertificate.from_bytes(File.read(file)) end
from_string(string)
click to toggle source
# File lib/ssh_cert_parser.rb, line 10 def from_string(string) SSHCertificate.from_bytes(string) end