diff options
author | Marvin Borner | 2019-01-23 22:05:34 +0100 |
---|---|---|
committer | Marvin Borner | 2019-01-23 22:05:34 +0100 |
commit | 9c462ef4be0a7510607ac1d06b57cbe97e71d26a (patch) | |
tree | 5ed279628a482f50bbdc831c0f3e87a665128857 /public/scripts/2_encryption.js | |
parent | eb39bb0d2f4467bddd3a128979830de3c0833f77 (diff) |
Added ugly solution to function access
Diffstat (limited to 'public/scripts/2_encryption.js')
-rw-r--r-- | public/scripts/2_encryption.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/public/scripts/2_encryption.js b/public/scripts/2_encryption.js index 05b4b69..4d05780 100644 --- a/public/scripts/2_encryption.js +++ b/public/scripts/2_encryption.js @@ -85,4 +85,9 @@ function testEncryption() { }) } -testEncryption(); +// TODO: Export as module or sth +// REMEMBER: UGLY EXPORT! +window.generateKeys = generateKeys; +window.encrypt = encrypt; +window.decrypt = decrypt; +window.testEncryption = testEncryption; |