Home
last modified time | relevance | path

Searched refs:encodedX (Results 1 – 1 of 1) sorted by relevance

/external/ukey2/src/main/java/com/google/security/cryptauth/lib/securemessage/
DPublicKeyProtoUtil.java275 byte[] encodedX = p256pk.getX().toByteArray(); in parseEcPublicKey()
278 validateEcP256CoordinateEncoding(encodedX); in parseEcPublicKey()
280 BigInteger wX = new BigInteger(encodedX); in parseEcPublicKey()
386 public static DHPrivateKey parseDh2048PrivateKey(byte[] encodedX) in parseDh2048PrivateKey() argument
388 validateDhEncoding(encodedX); // Could be stricter for x, but should be fine to use this in parseDh2048PrivateKey()
391 x = new BigInteger(encodedX); in parseDh2048PrivateKey()