Skip to content

Commit

Permalink
Update encrypt.js
Browse files Browse the repository at this point in the history
  • Loading branch information
cardinal9999 authored Sep 1, 2021
1 parent 5b853fc commit 173de26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/encrypt.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function encode(string) {
number += string.charCodeAt(i).toString(16);
return number;
}
function crypt(input, key) {
export function crypt(input, key) {
var key = key.split('');
var output = [];
int1 = encode(key);
Expand Down

0 comments on commit 173de26

Please sign in to comment.