Skip to content

Commit 547e055

Browse files
Skip encryption for now
1 parent 02d3fbb commit 547e055

File tree

1 file changed

+4
-4
lines changed
  • app/src/main/java/org/vonderheidt/hips/utils

1 file changed

+4
-4
lines changed

app/src/main/java/org/vonderheidt/hips/utils/Crypto.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ object Crypto {
1313
// Wait 5 seconds
1414
delay(5000)
1515

16-
// Return placeholder
17-
val cipherBits = ByteArray(size = 0)
16+
// Skip encryption for now
17+
val cipherBits = plainBits
1818

1919
return cipherBits
2020
}
@@ -26,8 +26,8 @@ object Crypto {
2626
// Wait 5 seconds
2727
delay(5000)
2828

29-
// Return placeholder
30-
val plainBits = ByteArray(size = 0)
29+
// Skip decryption for now
30+
val plainBits = cipherBits
3131

3232
return plainBits
3333
}

0 commit comments

Comments
 (0)