46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
include::../description.adoc[]
|
|
|
|
include::../ask-yourself.adoc[]
|
|
|
|
include::../recommended.adoc[]
|
|
|
|
== Sensitive Code Example
|
|
|
|
----
|
|
// === Client side ===
|
|
crypto.subtle.encrypt(algo, key, plainData); // Sensitive
|
|
crypto.subtle.decrypt(algo, key, encData); // Sensitive
|
|
----
|
|
|
|
----
|
|
// === Server side ===
|
|
const crypto = require("crypto");
|
|
const cipher = crypto.createCipher(algo, key); // Sensitive
|
|
const cipheriv = crypto.createCipheriv(algo, key, iv); // Sensitive
|
|
const decipher = crypto.createDecipher(algo, key); // Sensitive
|
|
const decipheriv = crypto.createDecipheriv(algo, key, iv); // Sensitive
|
|
const pubEnc = crypto.publicEncrypt(key, buf); // Sensitive
|
|
const privDec = crypto.privateDecrypt({ key: key, passphrase: secret }, pubEnc); // Sensitive
|
|
const privEnc = crypto.privateEncrypt({ key: key, passphrase: secret }, buf); // Sensitive
|
|
const pubDec = crypto.publicDecrypt(key, privEnc); // Sensitive
|
|
----
|
|
|
|
include::../see.adoc[]
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::../message.adoc[]
|
|
|
|
include::../highlighting.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|