Browse Source

Keypair: Minimize the scope of warning suppression

Signed-off-by: Samuel Holland <samuel@sholland.org>
master
Samuel Holland 6 years ago
parent
commit
e8d8d5dc29
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/src/main/java/com/wireguard/crypto/Keypair.java

+ 1
- 1
app/src/main/java/com/wireguard/crypto/Keypair.java View File

@@ -11,7 +11,6 @@ import java.security.SecureRandom;
* Represents a Curve25519 keypair as used by WireGuard.
*/

@SuppressWarnings("MagicNumber")
public class Keypair {
private final byte[] privateKey;
private final byte[] publicKey;
@@ -29,6 +28,7 @@ public class Keypair {
this(KeyEncoding.keyFromBase64(privateKey));
}

@SuppressWarnings("MagicNumber")
private static byte[] generatePrivateKey() {
final SecureRandom secureRandom = new SecureRandom();
final byte[] privateKey = new byte[KeyEncoding.KEY_LENGTH];


Loading…
Cancel
Save