We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to get the certificate signature time of the pe file???
The text was updated successfully, but these errors were encountered:
szOID_RSA_signingTime
Sorry, something went wrong.
var signingTime time.Time err := pe.Certificates.Content.UnmarshalSignedAttribute(pkcs7.OIDAttributeSigningTime, &signingTime) if err == nil { fmt.Println(signingTime) }
Some pe files cannot get data by this method
pe.Certificates.Content.Signers[0].UnauthenticatedAttributes[0] OidAttributeCounterSign ---> asn1.Unmarshal pkcs7.SignerInfo ---> OidAttributeSigningTime
Hello @xdeng
Thanks for your feedback, I will have a look tomorrow.
No branches or pull requests
How to get the certificate signature time of the pe file???
The text was updated successfully, but these errors were encountered: