rely on native api

This commit is contained in:
cupcakearmy
2019-04-08 20:06:55 +02:00
parent a015d4f46a
commit 4f17d72ea7
4 changed files with 163 additions and 209 deletions
+6 -6
View File
@@ -1,12 +1,12 @@
import AES from './AES'
import RSA from './RSA'
import Symmetric from './Symmetric'
export default {
const exp = {
RSA,
AES,
Symmetric,
}
export {
AES,
RSA,
module.exports = {
...exp,
default: exp,
}