mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.1 KiB
Swift
61 lines
2.1 KiB
Swift
// Copyright © 2023 Rangeproof Pty Ltd. All rights reserved.
|
|
//
|
|
// stringlint:disable
|
|
|
|
import Foundation
|
|
import SessionUtil
|
|
import SessionUtilitiesKit
|
|
|
|
// MARK: - ONS Response
|
|
|
|
internal extension Crypto.Generator {
|
|
static func sessionId(
|
|
name: String,
|
|
response: SnodeAPI.ONSResolveResponse
|
|
) -> Crypto.Generator<String> {
|
|
return Crypto.Generator(
|
|
id: "sessionId_for_ONS_response",
|
|
args: [name, response]
|
|
) {
|
|
guard var cName: [CChar] = name.lowercased().cString(using: .utf8) else {
|
|
throw SnodeAPIError.onsDecryptionFailed
|
|
}
|
|
|
|
// Name must be in lowercase
|
|
var cCiphertext: [UInt8] = Array(Data(hex: response.result.encryptedValue))
|
|
var cSessionId: [CChar] = [CChar](repeating: 0, count: 67)
|
|
|
|
// Need to switch on `result.nonce` and explciitly pass `nil` because passing an optional
|
|
// to a C function doesn't seem to work correctly
|
|
switch response.result.nonce {
|
|
case .none:
|
|
guard
|
|
session_decrypt_ons_response(
|
|
&cName,
|
|
&cCiphertext,
|
|
cCiphertext.count,
|
|
nil,
|
|
&cSessionId
|
|
)
|
|
else { throw SnodeAPIError.onsDecryptionFailed }
|
|
|
|
case .some(let nonce):
|
|
var cNonce: [UInt8] = Array(Data(hex: nonce))
|
|
|
|
guard
|
|
cNonce.count == 24,
|
|
session_decrypt_ons_response(
|
|
&cName,
|
|
&cCiphertext,
|
|
cCiphertext.count,
|
|
&cNonce,
|
|
&cSessionId
|
|
)
|
|
else { throw SnodeAPIError.onsDecryptionFailed }
|
|
}
|
|
|
|
return String(cString: cSessionId)
|
|
}
|
|
}
|
|
}
|