Skip to content
New issue

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

docs: improve module documentation #2511

Merged
merged 3 commits into from
Aug 11, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge remote-tracking branch 'upstream/main' into chore_improve_modul…
…e_doc
  • Loading branch information
kitsonk committed Aug 11, 2022
commit 753ab950aea53c520541e65b75abd6257cdcfcc1
7 changes: 6 additions & 1 deletion crypto/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
* [Web Crypto](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API)
* supporting additional encryption APIs.
*
* The export of {@linkcode crypto} offloads to the built in Web Crypto APIs.
* Provides additional digest algorithms that are not part of the WebCrypto
* standard as well as a `subtle.digest` and `subtle.digestSync` methods. It
* also provide a `subtle.timingSafeEqual()` method to compare array buffers
* or data views in a way that isn't prone to timing based attacks.
*
* The "polyfill" delegates to `WebCrypto` where possible.
*
* @module
*/
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.