Menu

Monday, July 17, 2017

[NodeJS] Base64 Encryption และ Decryption โดยไม่ต้องลง package เพิ่มเติม
[NodeJS] Base64 Encryption and Decryption without Requiring Additional Packages

Base64 เป็นรูปแบบการแปลงข้อมูล Binary เป็นข้อมูลแบบ String สำหรับการใช้งานที่ไม่รองรับข้อมูลแบบ Binary เช่น การส่งข้อมูลไปยัง JSON API

Encryption
let bitmap = fs.readFileSync(imgPath);
let imgBase64 = new Buffer(bitmap).toString('base64');
Decryption
let bitmap = Buffer.from(imgBase64, 'base64');

No comments:

Post a Comment