Added APIs for RSA public/private key encryption/decryption. Node v0.12.0 (Stable) cryptoモジュールに公開鍵暗号のAPIが追加されたそうなので試す。 鍵生成 $ openssl genrsa 2048 > test_private.key $ openssl rsa -pubout < test_private.key > test_public.key コード var crypto = require('crypto'); var fs = require('fs'); // 公開鍵、暗号化用 var publicKey = fs.readFileSync('test_public.key', {encoding: 'ascii'}); // 秘密鍵、復号用 var privateKey = fs.r