We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcafeb5 commit e667e6cCopy full SHA for e667e6c
1 file changed
src/main/java/in/dragonbra/javasteam/types/DepotManifest.kt
@@ -150,6 +150,8 @@ class DepotManifest {
150
151
// SK has this below `return true;` but we cannot do that in Kotlin.
152
fun tryDecryptName(name: String, iv: ByteArray, decoded: (String?) -> Unit): Boolean {
153
+ decoded(null)
154
+
155
var decodedLength = name.length / 4 * 3 // This may be higher due to padding
156
157
// Majority of filenames are short, even when they are encrypted and base64 encoded,
0 commit comments