diff --git a/revocation/revocation.go b/revocation/revocation.go index 0c44148..707e433 100644 --- a/revocation/revocation.go +++ b/revocation/revocation.go @@ -33,7 +33,7 @@ func (r *InfoArchival) AddOCSP(b []byte) error { // IsRevoked checks if there is a status inclded for the certificate and returns // true if the certificate is marked as revoked. // -// TODO: We should report if there is no CRL or OCSP response embeded for this certificate +// TODO: We should report if there is no CRL or OCSP response embedded for this certificate // TODO: Information about the revocation (time, reason, etc) must be extractable func (r *InfoArchival) IsRevoked(c *x509.Certificate) bool { // check the crl and ocsp to see if this certificate is revoked diff --git a/sign/revocation.go b/sign/revocation.go index 044f305..f6d9553 100644 --- a/sign/revocation.go +++ b/sign/revocation.go @@ -65,9 +65,9 @@ func DefaultEmbedRevocationStatusFunction(cert, issuer *x509.Certificate, i *rev // hirachies) can be smaller. // // There have been some reports that the usage of a CRL would result in a better - // compatibilty. + // compatibility. // - // TODO: Find and embed link about compatibilty + // TODO: Find and embed link about compatibility // TODO: Implement revocation status caching (required for higher volume signing) // using an OCSP server