at backyard

Color my life with the chaos of trouble.

Entries from 2019-08-04 to 1 day

Node.jsにおけるHMAC生成について

Node.jsでのHMAC生成方法 自分用の備忘録。下記のドキュメントを参考にした。 nodejs.org まずは最も一般的かと思われるやり方 const crypto = require('crypto'); const secret = 'abcdefg'; const sampleText = 'I love cupcakes'; const hash = crypto.cr…