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

doc: make Web Crypto example spec compliant #41556

Commits on Jan 16, 2022

  1. doc: make Web Crypto example spec compliant

    subtle.sign is not supposed to support strings, and in most Web Crypto
    implementations, it does not. Passing a string as the 'data' argument
    only works in Node.js, and users should not rely on that oddity. The
    Web Crypto spec requires the data argument to be a BufferSource, i.e.,
    an ArrayBuffer or an ArrayBufferView.
    tniessen committed Jan 16, 2022
    Configuration menu
    Copy the full SHA
    f041c27 View commit details
    Browse the repository at this point in the history