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

<<11121314151617181920

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
BCDSAPrivateKey.java 6 import java.math.BigInteger;
30 private BigInteger x;
102 public BigInteger getX()
153 this.dsaSpec = new DSAParameterSpec((BigInteger)in.readObject(), (BigInteger)in.readObject(), (BigInteger)in.readObject());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEDHPrivateKey.java 6 import java.math.BigInteger;
34 BigInteger x;
147 public BigInteger getX()
156 x = (BigInteger)in.readObject();
158 this.dhSpec = new DHParameterSpec((BigInteger)in.readObject(), (BigInteger)in.readObject(), in.readInt());
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLECPrivateKey.java 23 import java.math.BigInteger;
54 final BigInteger privKey = ecKeySpec.getS();
66 final BigInteger privKey = ecPrivateKey.getS();
95 public BigInteger getS() {
103 private BigInteger getPrivateKey() {
104 return new BigInteger(NativeCrypto.EC_KEY_get_private_key(key.getPkeyContext()));
OpenSSLDSAKeyFactory.java 19 import java.math.BigInteger;
149 BigInteger y = dsaKey.getY();
152 BigInteger p = params.getP();
153 BigInteger q = params.getQ();
154 BigInteger g = params.getG();
164 BigInteger x = dsaKey.getX();
167 BigInteger p = params.getP();
168 BigInteger q = params.getQ();
169 BigInteger g = params.getG();
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/
TimeStampReqTest.java 21 import java.math.BigInteger;
43 BigInteger nonce = BigInteger.valueOf(1234567890L);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
IssuerAndSerialNumber.java 3 import java.math.BigInteger;
64 BigInteger serialNumber)
75 BigInteger serialNumber)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PBKDF2Params.java 3 import java.math.BigInteger;
79 public BigInteger getIterationCount()
84 public BigInteger getKeyLength()
PBEParameter.java 3 import java.math.BigInteger;
54 public BigInteger getIterationCount()
PKCS12PBEParams.java 3 import java.math.BigInteger;
50 public BigInteger getIterations()
Pfx.java 3 import java.math.BigInteger;
25 BigInteger version = ((ASN1Integer)seq.getObjectAt(0)).getValue();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
KeyPairGeneratorSpi.java 3 import java.math.BigInteger;
25 final static BigInteger defaultPublicExponent = BigInteger.valueOf(0x10001);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DSABase.java 3 import java.math.BigInteger;
56 BigInteger[] sig = signer.generateSignature(hash);
74 BigInteger[] sig;
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
SimpleDERReader.java 9 import java.math.BigInteger;
111 public BigInteger readInt() throws IOException
125 return new BigInteger(b);
  /libcore/luni/src/test/java/libcore/javax/crypto/spec/
AlgorithmParametersTestDH.java 19 import java.math.BigInteger;
60 new DHParameterSpec(new BigInteger(P), new BigInteger(Q), l));
AlgorithmParametersTestDSA.java 18 import java.math.BigInteger;
64 new BigInteger(P), new BigInteger(Q), new BigInteger(G)));
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyPairGenerator5Test.java 20 import java.math.BigInteger;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Arrays.java 3 import java.math.BigInteger;
203 BigInteger[] a,
204 BigInteger[] b)
394 public static int hashCode(BigInteger[] data)
486 public static BigInteger[] clone(BigInteger[] data)
492 BigInteger[] copy = new BigInteger[data.length];
563 public static BigInteger[] copyOf(BigInteger[] data, int newLength
    [all...]
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedLongTest.java 17 import java.math.BigInteger;
59 BigInteger expected = (value >= 0)
60 ? BigInteger.valueOf(value)
61 : BigInteger.valueOf(value).add(BigInteger.ZERO.setBit(64));
220 BigInteger big =
221 (a >= 0) ? BigInteger.valueOf(a) : BigInteger.valueOf(a).add(BigInteger.ZERO.setBit(64));
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 119 private static final BigInteger[] FIVE_POW;
125 private static final BigInteger[] TEN_POW;
163 * An array with the first <code>BigInteger</code> scaled by zero.
215 private BigInteger intVal;
347 setUnscaledValue(new BigInteger(unscaledBuffer.toString()));
498 intVal = new BigInteger(bi);
508 setUnscaledValue(Multiplication.multiplyByFivePow(BigInteger.valueOf(mantissa), scale));
546 public BigDecimal(BigInteger val) {
561 public BigDecimal(BigInteger val, MathContext mc) {
574 public BigDecimal(BigInteger unscaledVal, int scale)
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
X509CRLSelector.java 22 import java.math.BigInteger;
48 private BigInteger minCRL;
50 private BigInteger maxCRL;
221 public void setMinCRLNumber(BigInteger minCRL) {
235 public void setMaxCRLNumber(BigInteger maxCRL) {
317 public BigInteger getMinCRL() {
330 public BigInteger getMaxCRL() {
420 BigInteger crlNumber = new BigInteger((byte[])
  /libcore/luni/src/main/java/javax/xml/datatype/
XMLGregorianCalendar.java 23 import java.math.BigInteger;
196 * BigInteger year,
254 public abstract void setYear(BigInteger year);
465 public abstract BigInteger getEon();
488 * @return sum of <code>eon</code> and <code>BigInteger.valueOf(year)</code>
496 public abstract BigInteger getEonAndYear();
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
X509CRLSelector2Test.java 13 import java.math.BigInteger;
235 * setMinCRLNumber(BigInteger minCRL) method testing. Tests if CRLs with any
244 BigInteger minCRL = new BigInteger("10000");
253 selector.setMinCRLNumber(new BigInteger("10001"));
259 * setMaxCRLNumber(BigInteger maxCRL) method testing. Tests if CRLs with any
268 BigInteger maxCRL = new BigInteger("10000");
277 selector.setMaxCRLNumber(new BigInteger("9999"));
393 BigInteger minCRL = new BigInteger("10000")
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
X509CRLEntryHolder.java 3 import java.math.BigInteger;
43 public BigInteger getSerialNumber()
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
CRLReason.java 3 import java.math.BigInteger;
130 public BigInteger getValue()
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9FieldID.java 3 import java.math.BigInteger;
29 public X9FieldID(BigInteger primeP)

Completed in 1220 milliseconds

<<11121314151617181920