Documentation ¶
Index ¶
- Constants
- Variables
- func CheckSignature(cert *x509.Certificate, message []byte, signature []byte) error
- func InitNodeStakingKeyPair(keyPath, certPath string) error
- func LoadTLSCertFromBytes(keyBytes, certBytes []byte) (*tls.Certificate, error)
- func LoadTLSCertFromFiles(keyPath, certPath string) (*tls.Certificate, error)
- func NewCertAndKeyBytes() ([]byte, []byte, error)
- func NewTLSCert() (*tls.Certificate, error)
Constants ¶
View Source
const MaxRSAKeyBitlen = 8192
MaxRSAKeyBitlen is the maximum RSA key size in bits that we are willing to parse.
Variables ¶
View Source
var ( ErrInvalidPublicKeyType = errors.New("invalid public key type") ErrInvalidPublicKey = errors.New("invalid public key") )
Functions ¶
func CheckSignature ¶ added in v1.10.6
func CheckSignature(cert *x509.Certificate, message []byte, signature []byte) error
func InitNodeStakingKeyPair ¶ added in v1.4.5
InitNodeStakingKeyPair generates a self-signed TLS key/cert pair to use in staking. The key and files will be placed at [keyPath] and [certPath], respectively. If there is already a file at [keyPath], returns nil.
func LoadTLSCertFromBytes ¶ added in v1.7.2
func LoadTLSCertFromBytes(keyBytes, certBytes []byte) (*tls.Certificate, error)
func LoadTLSCertFromFiles ¶ added in v1.7.2
func LoadTLSCertFromFiles(keyPath, certPath string) (*tls.Certificate, error)
func NewCertAndKeyBytes ¶ added in v1.5.3
Creates a new staking private key / staking certificate pair. Returns the PEM byte representations of both.
func NewTLSCert ¶ added in v1.4.0
func NewTLSCert() (*tls.Certificate, error)
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.