Created
July 9, 2019 14:50
-
-
Save nleiva/d19402530d7bb52154cea55a5f015a68 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Certificate struct { | |
... | |
Signature []byte | |
SignatureAlgorithm SignatureAlgorithm | |
PublicKeyAlgorithm PublicKeyAlgorithm | |
PublicKey interface{} | |
Version int | |
SerialNumber *big.Int | |
Issuer pkix.Name | |
Subject pkix.Name | |
NotBefore, NotAfter time.Time // Validity bounds. | |
KeyUsage KeyUsage | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment