Searched refs:BigIntegerUtils (Results 1 – 5 of 5) sorted by relevance
38 byte[] byteArrayA2 = BigIntegerUtils.bigIntegerToUnsignedByteArray(bigIntA, 2); in testBigIntegerToUnsignedByteArray()40 byte[] byteArrayB2 = BigIntegerUtils.bigIntegerToUnsignedByteArray(bigIntB, 2); in testBigIntegerToUnsignedByteArray()43 byte[] byteArrayA3 = BigIntegerUtils.bigIntegerToUnsignedByteArray(bigIntA, 3); in testBigIntegerToUnsignedByteArray()46 byte[] byteArrayB3 = BigIntegerUtils.bigIntegerToUnsignedByteArray(bigIntB, 3); in testBigIntegerToUnsignedByteArray()
18 import static com.android.internal.net.utils.BigIntegerUtils.bigIntegerToUnsignedByteArray;19 import static com.android.internal.net.utils.BigIntegerUtils.unsignedByteArrayToBigInteger;
26 import static com.android.internal.net.utils.BigIntegerUtils.unsignedHexStringToBigInteger;37 import com.android.internal.net.utils.BigIntegerUtils;250 BigIntegerUtils.bigIntegerToUnsignedByteArray(publicKey.getY(), keySize); in createOutboundModpKePayload()348 BigInteger publicKeyValue = BigIntegerUtils.unsignedByteArrayToBigInteger(remotePublicKey); in getModpSharedKey()
34 import com.android.internal.net.utils.test.BigIntegerUtils;176 BigInteger primeValue = BigIntegerUtils.unsignedHexStringToBigInteger(primeHex); in getModpPrivateKey()179 BigIntegerUtils.unsignedHexStringToBigInteger(privateKeyXValueHex); in getModpPrivateKey()
21 public final class BigIntegerUtils { class