Node.js 에서 암복호화 하기
“이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.” AES 방식(Key) var key = ‘this is password key’; var input = ‘This_is_Password!’; var cipher = crypto.createCipher(‘aes192’, key); cipher.update(input, ‘utf8’, ‘base64’); var cipheredOutput = cipher.final(‘base64’); var decipher = crypto.createDecipher(‘aes192’, … Continue reading
Posted in node.js
Leave a comment