remove logs

This commit is contained in:
2024-07-10 17:06:56 +03:00
parent f8a5653ff6
commit 5bd0bbfcc5
2 changed files with 0 additions and 6 deletions

View File

@@ -8,10 +8,7 @@ import {Sha256} from 'asmcrypto.js'
export const decryptChatMessage = (encryptedMessage, privateKey, recipientPublicKey, lastReference) => {
const test = encryptedMessage
console.log({test})
console.log({encryptedMessage, privateKey, recipientPublicKey, lastReference})
let _encryptedMessage = Base58.decode(encryptedMessage)
console.log({_encryptedMessage})
const _base58RecipientPublicKey = recipientPublicKey instanceof Uint8Array ? Base58.encode(recipientPublicKey) : recipientPublicKey
const _recipientPublicKey = Base58.decode(_base58RecipientPublicKey)