]> git.codecow.com Git - libnemo.git/commitdiff
Formatting.
authorChris Duncan <chris@zoso.dev>
Tue, 15 Jul 2025 12:36:03 +0000 (05:36 -0700)
committerChris Duncan <chris@zoso.dev>
Tue, 15 Jul 2025 12:36:03 +0000 (05:36 -0700)
src/lib/workers/nano-nacl.ts

index 3aa624c9769b9a4ce1bb5260c938bdf2bc869a1a..441e053ea6aa8978d29e6211b514c6759b223f4f 100644 (file)
@@ -6,18 +6,19 @@
 import { Data, Headers, WorkerInterface } from '.'\r
 import { Blake2b } from '#src/lib/blake2b.js'\r
 \r
-// Ported in 2014 by Dmitry Chestnykh and Devi Mandiri.\r
-// Public domain.\r
-//\r
-// Implementation derived from TweetNaCl version 20140427.\r
-// See for details: http://tweetnacl.cr.yp.to/\r
-//\r
-// Modified in 2024 by Chris Duncan to hash secret key to public key using\r
-// BLAKE2b instead of SHA-512 as specified in the documentation for Nano\r
-// cryptocurrency.\r
-// See for details: https://docs.nano.org/integration-guides/the-basics/\r
-// Original source commit: https://github.com/dchest/tweetnacl-js/blob/71df1d6a1d78236ca3e9f6c788786e21f5a651a6/nacl-fast.js\r
-\r
+/**\r
+* Ported in 2014 by Dmitry Chestnykh and Devi Mandiri.\r
+* Public domain.\r
+*\r
+* Implementation derived from TweetNaCl version 20140427.\r
+* See for details: http:*tweetnacl.cr.yp.to/\r
+*\r
+* Modified in 2024 by Chris Duncan to hash secret key to public key using\r
+* BLAKE2b instead of SHA-512 as specified in the documentation for Nano\r
+* cryptocurrency.\r
+* See for details: https:*docs.nano.org/integration-guides/the-basics/\r
+* Original source commit: https:*github.com/dchest/tweetnacl-js/blob/71df1d6a1d78236ca3e9f6c788786e21f5a651a6/nacl-fast.js\r
+*/\r
 export class NanoNaCl extends WorkerInterface {\r
        static {\r
                NanoNaCl.listen()\r