2021-10-22 04:04:06 +00:00
|
|
|
package tls
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/sha256"
|
2023-02-17 08:01:24 +00:00
|
|
|
"crypto/x509"
|
2021-10-22 04:04:06 +00:00
|
|
|
"encoding/base64"
|
|
|
|
"encoding/pem"
|
|
|
|
)
|
|
|
|
|
|
|
|
func CalculatePEMCertChainSHA256Hash(certContent []byte) string {
|
|
|
|
var certChain [][]byte
|
|
|
|
for {
|
|
|
|
block, remain := pem.Decode(certContent)
|
|
|
|
if block == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
certChain = append(certChain, block.Bytes)
|
|
|
|
certContent = remain
|
|
|
|
}
|
|
|
|
certChainHash := GenerateCertChainHash(certChain)
|
|
|
|
certChainHashB64 := base64.StdEncoding.EncodeToString(certChainHash)
|
|
|
|
return certChainHashB64
|
|
|
|
}
|
|
|
|
|
|
|
|
func GenerateCertChainHash(rawCerts [][]byte) []byte {
|
|
|
|
var hashValue []byte
|
|
|
|
for _, certValue := range rawCerts {
|
|
|
|
out := sha256.Sum256(certValue)
|
|
|
|
if hashValue == nil {
|
|
|
|
hashValue = out[:]
|
|
|
|
} else {
|
|
|
|
newHashValue := sha256.Sum256(append(hashValue, out[:]...))
|
|
|
|
hashValue = newHashValue[:]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return hashValue
|
|
|
|
}
|
2023-02-17 08:01:24 +00:00
|
|
|
|
|
|
|
func GenerateCertPublicKeyHash(cert *x509.Certificate) []byte {
|
|
|
|
out := sha256.Sum256(cert.RawSubjectPublicKeyInfo)
|
|
|
|
return out[:]
|
|
|
|
}
|