Skip to content

Commit

Permalink
Update ValueObfuscator.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanlensink authored Oct 16, 2023
1 parent dc3bcef commit 2430782
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Sources/steamclenv/ValueObfuscator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ struct ValueObfuscator {
private static let salt: [UInt8] = \(salt)
private static func decode(_ encoded: [UInt8]) -> String {
String(decoding: encoded.enumerated().map { (offset, element) in
element ^ salt[offset % salt.count]
}, as: UTF8.self
String(
decoding: encoded.enumerated().map { offset, element in element ^ salt[offset % salt.count] },
as: UTF8.self
)
}\n
"""
}

Expand Down

0 comments on commit 2430782

Please sign in to comment.