Files
opencloud/vendor/github.com/lestrrat-go/dsig/Changes
dependabot[bot] 42987b038b build(deps): bump github.com/open-policy-agent/opa from 1.15.2 to 1.17.1
Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 1.15.2 to 1.17.1.
- [Release notes](https://github.com/open-policy-agent/opa/releases)
- [Changelog](https://github.com/open-policy-agent/opa/blob/v1.17.1/CHANGELOG.md)
- [Commits](https://github.com/open-policy-agent/opa/compare/v1.15.2...v1.17.1)

---
updated-dependencies:
- dependency-name: github.com/open-policy-agent/opa
  dependency-version: 1.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-16 08:40:16 +00:00

28 lines
1.2 KiB
Plaintext

Changes
=======
v1.2.1 7 Apr 2026
* Add `SignDigest()` for signing pre-computed digests. Supported for HMAC,
RSA (PKCS1v15 and PSS), and ECDSA families. EdDSA and Custom return an error.
v1.2.0 6 Apr 2026
* Add `VerifyDigest()` for verifying signatures against pre-computed digests.
Supported for HMAC, RSA, and ECDSA families. EdDSA and Custom return an error.
* Add low-level digest verification functions: `VerifyHMACDigest()`,
`VerifyRSADigest()`, `VerifyECDSADigest()`.
v1.1.0 2 Apr 2026
* Add `Custom` algorithm family for registering user-defined sign/verify
implementations. For the `Custom` family, `AlgorithmInfo.Meta` must implement
the `Signer` and/or `Verifier` interfaces. The implementation struct can
carry any additional metadata it needs (hash functions, curves, etc.).
* Add `UnregisterAlgorithm()` for removing previously registered custom
algorithms. Built-in algorithms are protected and cannot be unregistered.
* `RegisterAlgorithm()` now rejects re-registration of an already-registered
algorithm name. Use `UnregisterAlgorithm()` first if you need to replace it.
v1.0.0 - 18 Aug 2025
* Initial release