We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02d3fbb commit 547e055Copy full SHA for 547e055
app/src/main/java/org/vonderheidt/hips/utils/Crypto.kt
@@ -13,8 +13,8 @@ object Crypto {
13
// Wait 5 seconds
14
delay(5000)
15
16
- // Return placeholder
17
- val cipherBits = ByteArray(size = 0)
+ // Skip encryption for now
+ val cipherBits = plainBits
18
19
return cipherBits
20
}
@@ -26,8 +26,8 @@ object Crypto {
26
27
28
29
30
- val plainBits = ByteArray(size = 0)
+ // Skip decryption for now
+ val plainBits = cipherBits
31
32
return plainBits
33
0 commit comments