Remove prints

This commit is contained in:
Hugo Pointcheval 2020-04-15 14:51:01 +02:00
parent 5826a7166f
commit 9dc3b9b9f9

View File

@ -39,9 +39,7 @@ class NativeCrypto {
log('Payload Length: ${payloadbytes.length}', name: _tag); log('Payload Length: ${payloadbytes.length}', name: _tag);
log('Cipher Length: ${encryptedPayload.first.length}', name: _tag); log('Cipher Length: ${encryptedPayload.first.length}', name: _tag);
print('Cipher: ${encryptedPayload.first}');
log('IV Length: ${encryptedPayload.last.length}', name: _tag); log('IV Length: ${encryptedPayload.last.length}', name: _tag);
print('IV: ${encryptedPayload.last}');
return encryptedPayload; return encryptedPayload;
} }