Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 440d117

Browse filesBrowse files
hillbradMyles Borins
authored andcommitted
doc: add example using algorithms not directly exposed
PR-URL: #6108 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
1 parent 6bb7999 commit 440d117
Copy full SHA for 440d117

File tree

Expand file treeCollapse file tree

1 file changed

+22
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+22
-0
lines changed
Open diff view settings
Collapse file

‎doc/api/crypto.markdown‎

Copy file name to clipboardExpand all lines: doc/api/crypto.markdown
+22Lines changed: 22 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -719,6 +719,28 @@ console.log(sign.sign(private_key, 'hex'));
719719
// Prints the calculated signature
720720
```
721721

722+
A [`sign`][] instance can also be created by just passing in the digest
723+
algorithm name, in which case OpenSSL will infer the full signature algorithm
724+
from the type of the PEM-formatted private key, including algorithms that
725+
do not have directly exposed name constants, e.g. 'ecdsa-with-SHA256'.
726+
727+
Example: signing using ECDSA with SHA256
728+
729+
```js
730+
const crypto = require('crypto');
731+
const sign = crypto.createSign('sha256');
732+
733+
sign.update('some data to sign');
734+
735+
const private_key = '-----BEGIN EC PRIVATE KEY-----\n' +
736+
'MHcCAQEEIF+jnWY1D5kbVYDNvxxo/Y+ku2uJPDwS0r/VuPZQrjjVoAoGCCqGSM49\n' +
737+
'AwEHoUQDQgAEurOxfSxmqIRYzJVagdZfMMSjRNNhB8i3mXyIMq704m2m52FdfKZ2\n' +
738+
'pQhByd5eyj3lgZ7m7jbchtdgyOF8Io/1ng==\n' +
739+
'-----END EC PRIVATE KEY-----\n';
740+
741+
console.log(sign.sign(private_key).toString('hex'));
742+
```
743+
722744
### sign.sign(private_key[, output_format])
723745

724746
Calculates the signature on all the data passed through using either

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.