summaryrefslogtreecommitdiff
path: root/tests/unit_node/crypto/crypto_hkdf_test.ts
AgeCommit message (Collapse)Author
2024-07-25chore: update to `std@2024.07.19` (#24715)Asher Gomez
2024-07-05fix(ext/node): rewrite digest handling (#24392)Luca Casonato
Previously we had many different code paths all handling digests in different places, all with wildly different digest support. This commit rewrites this to use a single digest handling mechanism for all digest operations. It adds various aliases for digest algorithms, like node does. For example `sha1WithRSAEncryption` is an alias for `sha1`. It also adds support for `md5-sha1` digests in various places.