TweetNaCl の符号関数を使用しようとすると問題が発生します。予期しないタイプのエラーが常にスローされます。Uint8Array を使用してください。
const nacl = require('tweetnacl')
nacl.util = require('tweetnacl-util')
const b = nacl.sign.keyPair()
// console.log(b.secretKey) the result is already in Uint8Array form
const c = b.secretKey
const sign= nacl.sign("message", c)
//error unexpected type, use Uint8Array
nacl.sign.keyPair()
secretkey と publickey を含むオブジェクトを返しますが、署名しようとすると
nacl.sign("message", privatekey)
エラーが発生しました
これを克服する方法を知っている人はいますか?ありがとうございました :)