class SSLScan::Certificate
- SSLScan::Certificate
- Reference
- Object
Included Modules
Defined in:
sslscan/entities/certificate.crConstructors
Instance Method Summary
- #alt_names : Array(String) | Nil
- #expired? : Bool
- #issue_context : String | Nil
- #issue_namespace : String
- #issuer : String | Nil
- #not_valid_after : Time
- #not_valid_before : Time
- #pk : PK | Nil
- #self_signed? : Bool | Nil
- #signature_algorithm : String | Nil
- #subject : String | Nil
- #type : Type
Constructor Detail
def self.new(signature_algorithm : Nil | String, pk : SSLScan::Certificate::PK | Nil, subject : Nil | String, alt_names : Nil | Array(String), issuer : Nil | String, self_signed : Bool | Nil, not_valid_before : Time, not_valid_after : Time, expired : Bool)
#