Node.js で署名を生成したいと考えています。python の例を次に示します。
signature = hmac.new(SECRET, msg=message, digestmod=hashlib.sha256).hexdigest().upper()
私はこれを持っています:
signature = crypto.createHmac('sha256', SECRET).update(message).digest('hex').toUpperCase()
私は何を間違っていますか?