78 lines
2.1 KiB
Swift
78 lines
2.1 KiB
Swift
//
|
|
// XORMethod.swift
|
|
// TunnelKit
|
|
//
|
|
// Created by Davide De Rosa on 11/4/22.
|
|
// Copyright (c) 2024 Davide De Rosa. All rights reserved.
|
|
//
|
|
// https://github.com/passepartoutvpn
|
|
//
|
|
// This file is part of TunnelKit.
|
|
//
|
|
// TunnelKit is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// TunnelKit is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with TunnelKit. If not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
|
|
import Foundation
|
|
import CTunnelKitOpenVPNCore
|
|
|
|
extension OpenVPN {
|
|
|
|
/// The obfuscation method.
|
|
public enum XORMethod: Codable, Equatable {
|
|
|
|
/// XORs the bytes in each buffer with the given mask.
|
|
case xormask(mask: Data)
|
|
|
|
/// XORs each byte with its position in the packet.
|
|
case xorptrpos
|
|
|
|
/// Reverses the order of bytes in each buffer except for the first (abcde becomes aedcb).
|
|
case reverse
|
|
|
|
/// Performs several of the above steps (xormask -> xorptrpos -> reverse -> xorptrpos).
|
|
case obfuscate(mask: Data)
|
|
|
|
/// This method mapped to native enumeration.
|
|
public var native: XORMethodNative {
|
|
switch self {
|
|
case .xormask:
|
|
return .mask
|
|
|
|
case .xorptrpos:
|
|
return .ptrPos
|
|
|
|
case .reverse:
|
|
return .reverse
|
|
|
|
case .obfuscate:
|
|
return .obfuscate
|
|
}
|
|
}
|
|
|
|
/// The optionally associated mask.
|
|
public var mask: Data? {
|
|
switch self {
|
|
case .xormask(let mask):
|
|
return mask
|
|
|
|
case .obfuscate(let mask):
|
|
return mask
|
|
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
}
|