HomeSort by relevance Sort by last modified time
    Searched refs:BigInteger (Results 401 - 425 of 480) sorted by null

<<11121314151617181920

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
AbstractSampleEncryptionBox.java 14 import java.math.BigInteger;
276 if (!new BigInteger(iv).equals(new BigInteger(entry.iv))) {
  /libcore/luni/src/main/java/java/math/
Conversion.java 21 * Static library that provides {@link BigInteger} base conversion from/to any
52 /** @see BigInteger#toString(int) */
53 static String bigInteger2String(BigInteger val, int radix) {
134 * @see BigInteger#toString()
137 static String toDecimalScaledString(BigInteger val, int scale) {
417 /** @see BigInteger#doubleValue() */
418 static double bigInteger2Double(BigInteger val) {
  /libcore/luni/src/main/java/java/text/
NumberFormat.java 25 import java.math.BigInteger;
274 * {@code BigInteger} where {@code BigInteger.bitLength} returns <i>less than</i> 64. All other
297 (object instanceof BigInteger && ((BigInteger) object).bitLength() < 64)) {
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CRLImpl.java 27 import java.math.BigInteger;
248 BigInteger serialN = certificate.getSerialNumber();
290 * @see java.security.cert.X509CRL#getRevokedCertificate(BigInteger)
293 public X509CRLEntry getRevokedCertificate(BigInteger serialNumber) {
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyPairGenerator1Test.java 25 import java.math.BigInteger;
427 BigInteger bInt = new BigInteger("1");
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyPairGenerator4Test.java 20 import java.math.BigInteger;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 3 import java.math.BigInteger;
139 public ECPoint multiply(BigInteger k)
295 ECFieldElement TWO = this.curve.fromBigInteger(BigInteger.valueOf(2));
296 ECFieldElement THREE = this.curve.fromBigInteger(BigInteger.valueOf(3));
  /frameworks/base/core/tests/coretests/src/android/util/
JsonWriterTest.java 22 import java.math.BigInteger;
218 jsonWriter.value(new BigInteger("0"));
219 jsonWriter.value(new BigInteger("9223372036854775808"));
220 jsonWriter.value(new BigInteger("-9223372036854775809"));
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismTest.java 22 import java.math.BigInteger;
551 em.init(key, new RSAKeyGenParameterSpec(10, new BigInteger("10")));
565 em.init(null, new RSAKeyGenParameterSpec(10, new BigInteger("10")));
572 em.init(key, new RSAKeyGenParameterSpec(10, new BigInteger("10")));
  /libcore/crypto/src/test/java/org/conscrypt/
NativeCryptoTest.java 24 import java.math.BigInteger;
146 BigInteger s = new BigInteger(
152 CHANNEL_ID = new BigInteger(
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest3.java 28 import java.math.BigInteger;
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
SignatureTest.java 19 import java.math.BigInteger;
228 private static final BigInteger RSA_2048_modulus = new BigInteger(new byte[] {
264 private static final BigInteger RSA_2048_privateExponent = new BigInteger(new byte[] {
299 private static final BigInteger RSA_2048_publicExponent = new BigInteger(new byte[] {
303 private static final BigInteger RSA_2048_primeP = new BigInteger(new byte[] {
323 private static final BigInteger RSA_2048_primeQ = new BigInteger(new byte[]
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
X509AttributeCertificateHolder.java 5 import java.math.BigInteger;
97 public BigInteger getSerialNumber()
X509CRLHolder.java 7 import java.math.BigInteger;
126 public X509CRLEntryHolder getRevokedCertificate(BigInteger serialNumber)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
X509CRLEntryObject.java 4 import java.math.BigInteger;
227 public BigInteger getSerialNumber()
X509CRLObject.java 4 import java.math.BigInteger;
301 public X509CRLEntry getRevokedCertificate(BigInteger serialNumber)
531 BigInteger serial = ((X509Certificate)cert).getSerialNumber();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
X509CRLEntryObject.java 4 import java.math.BigInteger;
227 public BigInteger getSerialNumber()
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509V2AttributeCertificate.java 6 import java.math.BigInteger;
99 public BigInteger getSerialNumber()
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AbstractAppleMetaDataBox.java 12 import java.math.BigInteger;
147 return String.format("%x", new BigInteger(appleDataBox.getData()));
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLECKeyFactory.java 19 import java.math.BigInteger;
153 BigInteger s = ecKey.getS();
  /libcore/luni/src/main/java/java/util/
Scanner.java 28 import java.math.BigInteger;
601 * {@code BigInteger} in the default radix.
604 * {@code BigInteger}, otherwise {@code false}.
614 * {@code BigInteger} in the specified radix.
618 * {@code BigInteger}.
620 * {@code BigInteger}, otherwise {@code false}.
631 cachedNextValue = new BigInteger(intString, radix);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
JarUtils.java 26 import java.math.BigInteger;
98 BigInteger snum = sigInfo.getSerialNumber();
  /libcore/luni/src/test/java/libcore/java/text/
DecimalFormatTest.java 20 import java.math.BigInteger;
54 // a magic number they don't explain -- but the BigInteger should be formatted to the 400
57 assertEquals(309, numberFormat.format(BigInteger.valueOf(123)).length());
  /libcore/luni/src/test/java/tests/security/cert/
X509Certificate2Test.java 23 import java.math.BigInteger;
180 public BigInteger getSerialNumber() {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
BCECPublicKey.java 6 import java.math.BigInteger;
306 BigInteger.valueOf(ecSpec.getCofactor()),
321 private void extractBytes(byte[] encKey, int offSet, BigInteger bI)

Completed in 1211 milliseconds

<<11121314151617181920