aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/java/com/wireguard/crypto/Keypair.java
blob: f98b5e21e23cb4417d452f2e59c62f32284fcdf2 (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
package com.wireguard.crypto;

import android.util.Base64;

import java.security.SecureRandom;

/**
 * Represents a Curve25519 keypair as used by WireGuard.
 */

public class Keypair {
    private static byte[] generatePrivateKey() {
        final SecureRandom secureRandom = new SecureRandom();
        final byte privateKey[] = new byte[KeyEncoding.WG_KEY_LEN];
        secureRandom.nextBytes(privateKey);
        privateKey[0] &= 248;
        privateKey[31] &= 127;
        privateKey[31] |= 64;
        return privateKey;
    }

    private static byte[] generatePublicKey(byte privateKey[]) {
        final byte publicKey[] = new byte[KeyEncoding.WG_KEY_LEN];
        Curve25519.eval(publicKey, 0, privateKey, null);
        return publicKey;
    }

    private final byte privateKey[];
    private final byte publicKey[];

    public Keypair() {
        this(generatePrivateKey());
    }

    private Keypair(byte privateKey[]) {
        this.privateKey = privateKey;
        publicKey = generatePublicKey(privateKey);
    }

    public Keypair(String privateKey) {
        this(KeyEncoding.keyFromBase64(privateKey));
    }

    public String getPrivateKey() {
        return KeyEncoding.keyToBase64(privateKey);
    }

    public String getPublicKey() {
        return KeyEncoding.keyToBase64(publicKey);
    }
}