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
The functions which verify digests and signatures ought to provide some way to inspect the results of the verification in a more detailed way.
e.g. something like
struct DigestReport { payloaddigest: DigestStatus, sha256header: DigestStatus, sha1header: DigestStatus, // etc. } enum DigestStatus { Success, NotPresent, Mismatch(String, String), }
where the report can be easily collapsed into a single Result<...: RPMError> for success or failure
Result<...: RPMError>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The functions which verify digests and signatures ought to provide some way to inspect the results of the verification in a more detailed way.
e.g. something like
where the report can be easily collapsed into a single
Result<...: RPMError>
for success or failureThe text was updated successfully, but these errors were encountered: