2018-09-11 11:56:17 +00:00
|
|
|
//
|
|
|
|
// StaticKeyTests.swift
|
2021-11-02 21:52:47 +00:00
|
|
|
// TunnelKitOpenVPNTests
|
2018-09-11 11:56:17 +00:00
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 9/11/18.
|
2024-01-14 13:33:14 +00:00
|
|
|
// Copyright (c) 2024 Davide De Rosa. All rights reserved.
|
2018-09-11 11:56:17 +00:00
|
|
|
//
|
2019-05-14 08:58:47 +00:00
|
|
|
// https://github.com/passepartoutvpn
|
2018-09-11 11:56:17 +00:00
|
|
|
//
|
|
|
|
// 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 XCTest
|
2021-10-25 14:27:27 +00:00
|
|
|
@testable import TunnelKitCore
|
2021-11-07 20:54:05 +00:00
|
|
|
import TunnelKitOpenVPNCore
|
2018-09-11 11:56:17 +00:00
|
|
|
|
|
|
|
class StaticKeyTests: XCTestCase {
|
|
|
|
private let content = """
|
|
|
|
#
|
|
|
|
# 2048 bit OpenVPN static key
|
|
|
|
#
|
|
|
|
-----BEGIN OpenVPN Static key V1-----
|
|
|
|
48d9999bd71095b10649c7cb471c1051
|
|
|
|
b1afdece597cea06909b99303a18c674
|
|
|
|
01597b12c04a787e98cdb619ee960d90
|
|
|
|
a0165529dc650f3a5c6fbe77c91c137d
|
|
|
|
cf55d863fcbe314df5f0b45dbe974d9b
|
|
|
|
de33ef5b4803c3985531c6c23ca6906d
|
|
|
|
6cd028efc8585d1b9e71003566bd7891
|
|
|
|
b9cc9212bcba510109922eed87f5c8e6
|
|
|
|
6d8e59cbd82575261f02777372b2cd4c
|
|
|
|
a5214c4a6513ff26dd568f574fd40d6c
|
|
|
|
d450fc788160ff68434ce2bf6afb00e7
|
|
|
|
10a3198538f14c4d45d84ab42637872e
|
|
|
|
778a6b35a124e700920879f1d003ba93
|
|
|
|
dccdb953cdf32bea03f365760b0ed800
|
|
|
|
2098d4ce20d045b45a83a8432cc73767
|
|
|
|
7aed27125592a7148d25c87fdbe0a3f6
|
|
|
|
-----END OpenVPN Static key V1-----
|
|
|
|
"""
|
2023-04-20 19:52:45 +00:00
|
|
|
|
2018-09-11 11:56:17 +00:00
|
|
|
override func setUp() {
|
|
|
|
super.setUp()
|
|
|
|
// Put setup code here. This method is called before the invocation of each test method in the class.
|
|
|
|
}
|
2023-04-20 19:52:45 +00:00
|
|
|
|
2018-09-11 11:56:17 +00:00
|
|
|
override func tearDown() {
|
|
|
|
// Put teardown code here. This method is called after the invocation of each test method in the class.
|
|
|
|
super.tearDown()
|
|
|
|
}
|
2023-04-20 19:52:45 +00:00
|
|
|
|
2018-09-11 11:56:17 +00:00
|
|
|
func testFileBidirectional() {
|
|
|
|
let expected = Data(hex: "cf55d863fcbe314df5f0b45dbe974d9bde33ef5b4803c3985531c6c23ca6906d6cd028efc8585d1b9e71003566bd7891b9cc9212bcba510109922eed87f5c8e6")
|
2019-05-19 13:50:30 +00:00
|
|
|
let key = OpenVPN.StaticKey(file: content, direction: nil)
|
2018-09-11 11:56:17 +00:00
|
|
|
XCTAssertNotNil(key)
|
2023-04-20 19:52:45 +00:00
|
|
|
|
2018-09-11 11:56:17 +00:00
|
|
|
XCTAssertEqual(key?.hmacSendKey.toData(), expected)
|
|
|
|
XCTAssertEqual(key?.hmacReceiveKey.toData(), expected)
|
|
|
|
}
|
|
|
|
|
|
|
|
func testFileDirection() {
|
|
|
|
let send = Data(hex: "778a6b35a124e700920879f1d003ba93dccdb953cdf32bea03f365760b0ed8002098d4ce20d045b45a83a8432cc737677aed27125592a7148d25c87fdbe0a3f6")
|
|
|
|
let receive = Data(hex: "cf55d863fcbe314df5f0b45dbe974d9bde33ef5b4803c3985531c6c23ca6906d6cd028efc8585d1b9e71003566bd7891b9cc9212bcba510109922eed87f5c8e6")
|
2019-05-19 13:50:30 +00:00
|
|
|
let key = OpenVPN.StaticKey(file: content, direction: .client)
|
2018-09-11 11:56:17 +00:00
|
|
|
XCTAssertNotNil(key)
|
2023-04-20 19:52:45 +00:00
|
|
|
|
2018-09-11 11:56:17 +00:00
|
|
|
XCTAssertEqual(key?.hmacSendKey.toData(), send)
|
|
|
|
XCTAssertEqual(key?.hmacReceiveKey.toData(), receive)
|
|
|
|
}
|
|
|
|
}
|