const NodeRSA = require('node-rsa'); const key = new NodeRSA({b: 512}); const text = 'Hello RSA!'; const encrypted = key.encrypt(text, 'base64'); ...
確定! 回上一頁