aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/Shared/Model/Key.swift
blob: 17e25a031ae33726868b78653ccd7aeeb86ad250 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
// SPDX-License-Identifier: MIT
// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved.

import Foundation

extension Data {
    func isKey() -> Bool {
        return self.count == 32
    }

    func hexKey() -> String? {
        if self.count != 32 {
            return nil
        }
        var nibble1, nibble2: UInt
        var hex: [UInt8] = Array(repeating: 0, count: 64)

        for i in 0..<32 {
            let n = UInt(self[i])
            nibble1 = 87 + (n >> 4)
            nibble1 += (((UInt(bitPattern: Int(n >> 4) - 10)) >> 8) & 217)
            nibble2 = 87 + (n & 0xf)
            nibble2 += (((UInt(bitPattern: Int(n & 0xf) - 10)) >> 8) & 217)
            hex[i * 2] = UInt8(truncatingIfNeeded: nibble1)
            hex[i * 2 + 1] = UInt8(truncatingIfNeeded: nibble2)
        }
        return String(bytes: hex, encoding: .ascii)
    }

    private func decodeHex(c: UInt8) -> (UInt8, UInt8) {
        var alpha0, alpha, num0, num, val, ret: UInt8

        num = c ^ 48
        num0 = UInt8(truncatingIfNeeded: UInt(bitPattern: Int(num) - 10) >> 8)

        alpha = UInt8(truncatingIfNeeded: Int(c & 223) - 55)
        alpha0 = UInt8(truncatingIfNeeded: (UInt(bitPattern: Int(alpha) - 10) ^ UInt(bitPattern: Int(alpha) - 16)) >> 8)

        ret = UInt8(truncatingIfNeeded: UInt(bitPattern: Int(num0 | alpha0) - 1) >> 8)
        val = (num0 & num) | (alpha0 & alpha)

        return (val, ret)
    }

    init?(hexKey hexString: String) {
        let hex = [UInt8](hexString.utf8)
        if hex.count != 64 {
            return nil
        }
        self.init(repeating: 0, count: 32)

        var ret: UInt8 = 0
        for i in stride(from: 0, to: 64, by: 2) {
            var v1, v2, r: UInt8

            (v1, r) = decodeHex(c: hex[i])
            ret |= r

            (v2, r) = decodeHex(c: hex[i + 1])
            ret |= r

            self[i / 2] = (v1 << 4) | v2
        }

        if 1 & (UInt8(truncatingIfNeeded: Int(ret) - 1) >> 8) != 0 {
            return nil
        }
    }


    private func encodeBase64<T: RandomAccessCollection>(dest: inout ArraySlice<UInt8>, src: T) where T.Index == Int, T.Element == UInt8 {
        let a = Int((src[src.startIndex + 0] >> 2) & 63)
        let b = Int(((src[src.startIndex + 0] << 4) | (src[src.startIndex + 1] >> 4)) & 63)
        let c = Int(((src[src.startIndex + 1] << 2) | (src[src.startIndex + 2] >> 6)) & 63)
        let d = Int(src[src.startIndex + 2] & 63)

        for (i, x) in [a, b, c, d].enumerated() {
            var y: Int = x + 65
            y += ((25 - x) >> 8) & 6
            y -= ((51 - x) >> 8) & 75
            y -= ((61 - x) >> 8) & 15
            y += ((62 - x) >> 8) & 3
            dest[dest.startIndex + i] = UInt8(y)
        }
    }

    func base64Key() -> String? {
        if self.count != 32 {
            return nil
        }
        var base64: [UInt8] = Array(repeating: 0, count: 44)

        for i in 0..<(32 / 3) {
            encodeBase64(dest: &base64[(i * 4)..<(i * 4 + 4)], src: self[(i * 3)..<(i * 3 + 3)])
        }
        encodeBase64(dest: &base64[40..<44], src: [self[30], self[31], 0])
        base64[43] = 61

        return String(bytes: base64, encoding: .ascii)
    }

    private func decodeBase64<T: RandomAccessCollection>(src: T) -> Int where T.Index == Int, T.Element == UInt8 {
        var val: Int = 0
        for i in 0..<4 {
            let n = Int(src[src.startIndex + i])
            var a: Int = -1
            var b: Int
            b = ((((65 - 1) - n) & (n - (90 + 1))) >> 8)
            a += b & (n - 64)
            b = ((((97 - 1) - n) & (n - (122 + 1))) >> 8)
            a += b & (n - 70)
            b = ((((48 - 1) - n) & (n - (57 + 1))) >> 8)
            a += b & (n + 5)
            b = ((((43 - 1) - n) & (n - (43 + 1))) >> 8)
            a += b & 63
            b = ((((47 - 1) - n) & (n - (47 + 1))) >> 8)
            a += b & 64
            val |= a << (18 - 6 * i)
        }
        return val
    }

    init?(base64Key base64String: String) {
        let base64 = [UInt8](base64String.utf8)
        if base64.count != 44 || base64[43] != 61 {
            return nil
        }
        self.init(repeating: 0, count: 32)

        var ret: UInt8 = 0
        var val: Int
        for i in 0..<(32/3) {
            val = decodeBase64(src: base64[(i * 4)..<(i * 4 + 4)])
            ret |= UInt8(UInt32(val) >> UInt32(31))
            self[i * 3 + 0] = UInt8((val >> 16) & 0xff)
            self[i * 3 + 1] = UInt8((val >> 8) & 0xff)
            self[i * 3 + 2] = UInt8(val & 0xff)
        }
        val = decodeBase64(src: [base64[40], base64[41], base64[42], 65])
        ret |= UInt8((UInt32(val) >> 31) | UInt32(val & 0xff))
        self[30] = UInt8((val >> 16) & 0xff)
        self[31] = UInt8((val >> 8) & 0xff)

        if 1 & (UInt8(truncatingIfNeeded: Int(ret) - 1) >> 8) != 0 {
            return nil
        }
    }
}