Skip to content

Commit

Permalink
removed console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
johan-t committed Oct 12, 2023
1 parent 31307c4 commit 4fca4fb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion encryptionUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export const encrypt = (text: string): string => {
}

export const decrypt = (text: string): string => {
console.log(typeof text, text);
let textParts = text.split(':');
let iv = Buffer.from(textParts.shift()!, 'hex');
let encryptedText = Buffer.from(textParts.join(':'), 'hex');
Expand Down

0 comments on commit 4fca4fb

Please sign in to comment.