smimesign
smimesign copied to clipboard
Small error in example in readme
In the code:
sd, _ := ParseSignedData(der)
if err, _ := sd.VerifyDetached(msg, x509.VerifyOptions{}); err != nil {
panic(err)
}
I think if err, _
should be if _, err