aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/Crypto/Curve25519.swift
blob: e0f9c0fd88fc341e089a1465140e53183803163d (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
// SPDX-License-Identifier: MIT
// Copyright © 2018 WireGuard LLC. All Rights Reserved.

import UIKit

struct Curve25519 {
    static func generatePrivateKey() -> Data {
        var privateKey = Data(repeating: 0, count: 32)
        privateKey.withUnsafeMutableBytes { (bytes: UnsafeMutablePointer<UInt8>) in
            curve25519_generate_private_key(bytes)
        }
        assert(privateKey.count == 32)
        return privateKey
    }

    static func generatePublicKey(fromPrivateKey privateKey: Data) -> Data {
        assert(privateKey.count == 32)
        var publicKey = Data(repeating: 0, count: 32)
        privateKey.withUnsafeBytes { (privateKeyBytes: UnsafePointer<UInt8>) in
            publicKey.withUnsafeMutableBytes { (bytes: UnsafeMutablePointer<UInt8>) in
                curve25519_derive_public_key(bytes, privateKeyBytes)
            }
        }
        assert(publicKey.count == 32)
        return publicKey
    }
}