hash 練習 hash 練習 ¶hash 練習 1234567const crypto = require('crypto')// 產生演算法const hash = crypto.createHash('sha256')// 將 1 字串進行雜湊hash.update('1')// 將雜湊的結果取得 16 進制結果hash.digest('hex') 發表於 2024-12-05 tags: { hash }