This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/public-encrypt/index.js

19 lines
552 B
JavaScript
Raw Normal View History

2019-08-11 18:48:02 +00:00
var crypto = require('crypto')
if (typeof crypto.publicEncrypt !== 'function') {
crypto = require('./browser')
}
exports.publicEncrypt = crypto.publicEncrypt
exports.privateDecrypt = crypto.privateDecrypt
if (typeof crypto.privateEncrypt !== 'function') {
exports.privateEncrypt = require('./browser').privateEncrypt
} else {
exports.privateEncrypt = crypto.privateEncrypt
}
if (typeof crypto.publicDecrypt !== 'function') {
exports.publicDecrypt = require('./browser').publicDecrypt
} else {
exports.publicDecrypt = crypto.publicDecrypt
}