forked from hap-java/HAP-Java
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHomekitUtils.java
75 lines (65 loc) · 2.14 KB
/
HomekitUtils.java
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
package io.github.hapjava.server.impl;
import com.nimbusds.srp6.SRP6Routines;
import java.math.BigInteger;
import java.security.SecureRandom;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import net.i2p.crypto.eddsa.spec.EdDSANamedCurveTable;
import net.i2p.crypto.eddsa.spec.EdDSAParameterSpec;
public class HomekitUtils {
private static volatile SecureRandom secureRandom;
public static BigInteger generateSalt() {
return new BigInteger(new SRP6Routines().generateRandomSalt(16));
}
public static byte[] generateKey() {
EdDSAParameterSpec spec =
EdDSANamedCurveTable.getByName(EdDSANamedCurveTable.CURVE_ED25519_SHA512);
byte[] seed = new byte[spec.getCurve().getField().getb() / 8];
getSecureRandom().nextBytes(seed);
return seed;
}
public static String generateMac() {
int byte1 =
((getSecureRandom().nextInt(255) + 1) | 2) & 0xFE; // Unicast locally administered MAC;
return Integer.toHexString(byte1)
+ ":"
+ Stream.generate(() -> getSecureRandom().nextInt(255) + 1)
.limit(5)
.map(i -> Integer.toHexString(i))
.collect(Collectors.joining(":"));
}
public static String generatePin() {
String pin =
String.format(
"%03d-%02d-%03d",
getSecureRandom().nextInt(1000),
getSecureRandom().nextInt(100),
getSecureRandom().nextInt(1000));
if (pin == "000-00-000"
|| pin == "111-11-111"
|| pin == "222-22-222"
|| pin == "333-33-333"
|| pin == "444-44-444"
|| pin == "555-55-555"
|| pin == "666-66-666"
|| pin == "777-77-777"
|| pin == "888-88-888"
|| pin == "999-99-999"
|| pin == "123-45-678"
|| pin == "876-54-321") {
// disallowed Pin; just recurse and generate a new one
return generatePin();
}
return pin;
}
private static SecureRandom getSecureRandom() {
if (secureRandom == null) {
synchronized (HomekitUtils.class) {
if (secureRandom == null) {
secureRandom = new SecureRandom();
}
}
}
return secureRandom;
}
}