Node.js හි Base64 කේතන ක්රමය කරන්නේ කෙසේද?
Node.js තුළ තවම පදනම් 64 කේතන ක්රමයක් තිබේද? මම මේ අහන්න හේතුව බව ය final()සිට cryptoහැකි එකම ප්රතිදාන hex, ද්විමය හෝ ascii දත්ත. උදාහරණයක් වශයෙන්: var cipher = crypto.createCipheriv('des-ede3-cbc', encryption_key, iv); var ciph = cipher.update(plaintext, 'utf8', 'hex'); ciph += cipher.final('hex'); var decipher = crypto.createDecipheriv('des-ede3-cbc', encryption_key, iv); var txt = decipher.update(ciph, …