Uses of Class
java.math.BigInteger
-
Uses of BigInteger in java.math
Fields in java.math declared as BigInteger Modifier and Type Field Description static BigIntegerBigInteger. ONETheBigIntegerconstant 1.static BigIntegerBigInteger. TENTheBigIntegerconstant 10.static BigIntegerBigInteger. ZEROTheBigIntegerconstant 0.Methods in java.math that return BigInteger Modifier and Type Method Description BigIntegerBigInteger. abs()Returns aBigIntegerwhose value is the absolute value ofthis.BigIntegerBigInteger. add(BigInteger value)Returns aBigIntegerwhose value isthis + value.BigIntegerBigInteger. and(BigInteger value)Returns aBigIntegerwhose value isthis & value.BigIntegerBigInteger. andNot(BigInteger value)Returns aBigIntegerwhose value isthis & ~value.BigIntegerBigInteger. clearBit(int n)Returns aBigIntegerwhich has the same binary representation asthisbut with the bit at position n cleared.BigIntegerBigInteger. divide(BigInteger divisor)Returns aBigIntegerwhose value isthis / divisor.BigInteger[]BigInteger. divideAndRemainder(BigInteger divisor)Returns a two elementBigIntegerarray containingthis / divisorat index 0 andthis % divisorat index 1.BigIntegerBigInteger. flipBit(int n)Returns aBigIntegerwhich has the same binary representation asthisbut with the bit at position n flipped.BigIntegerBigInteger. gcd(BigInteger value)Returns aBigIntegerwhose value is greatest common divisor ofthisandvalue.BigIntegerBigInteger. max(BigInteger value)Returns the maximum of thisBigIntegerandvalue.BigIntegerBigInteger. min(BigInteger value)Returns the minimum of thisBigIntegerandvalue.BigIntegerBigInteger. mod(BigInteger m)Returns aBigIntegerwhose value isthis mod m.BigIntegerBigInteger. modInverse(BigInteger m)Returns aBigIntegerwhose value is1/this mod m.BigIntegerBigInteger. modPow(BigInteger exponent, BigInteger modulus)Returns aBigIntegerwhose value ispow(this, exponent) mod modulus.BigIntegerBigInteger. multiply(BigInteger value)Returns aBigIntegerwhose value isthis * value.BigIntegerBigInteger. negate()Returns aBigIntegerwhose value is the-this.BigIntegerBigInteger. nextProbablePrime()Returns the smallest integer x >thiswhich is probably prime as aBigIntegerinstance.BigIntegerBigInteger. not()Returns aBigIntegerwhose value is~this.BigIntegerBigInteger. or(BigInteger value)Returns aBigIntegerwhose value isthis | value.BigIntegerBigInteger. pow(int exp)Returns aBigIntegerwhose value ispow(this, exp).static BigIntegerBigInteger. probablePrime(int bitLength, Random random)Returns a random positiveBigIntegerinstance in the range[0, pow(2, bitLength)-1]which is probably prime.BigIntegerBigInteger. remainder(BigInteger divisor)Returns aBigIntegerwhose value isthis % divisor.BigIntegerBigInteger. setBit(int n)Returns aBigIntegerwhich has the same binary representation asthisbut with the bit at position n set.BigIntegerBigInteger. shiftLeft(int n)Returns aBigIntegerwhose value isthis << n.BigIntegerBigInteger. shiftRight(int n)Returns aBigIntegerwhose value isthis >> n.BigIntegerBigInteger. subtract(BigInteger value)Returns aBigIntegerwhose value isthis - value.BigIntegerBigDecimal. toBigInteger()Returns thisBigDecimalas a big integer instance.BigIntegerBigDecimal. toBigIntegerExact()Returns thisBigDecimalas a big integer instance if it has no fractional part.BigIntegerBigDecimal. unscaledValue()Returns the unscaled value (mantissa) of thisBigDecimalinstance as aBigInteger.static BigIntegerBigInteger. valueOf(long value)Returns aBigIntegerwhose value is equal tovalue.BigIntegerBigInteger. xor(BigInteger value)Returns aBigIntegerwhose value isthis ^ value.Methods in java.math with parameters of type BigInteger Modifier and Type Method Description BigIntegerBigInteger. add(BigInteger value)Returns aBigIntegerwhose value isthis + value.BigIntegerBigInteger. and(BigInteger value)Returns aBigIntegerwhose value isthis & value.BigIntegerBigInteger. andNot(BigInteger value)Returns aBigIntegerwhose value isthis & ~value.intBigInteger. compareTo(BigInteger value)Compares thisBigIntegerwithvalue.BigIntegerBigInteger. divide(BigInteger divisor)Returns aBigIntegerwhose value isthis / divisor.BigInteger[]BigInteger. divideAndRemainder(BigInteger divisor)Returns a two elementBigIntegerarray containingthis / divisorat index 0 andthis % divisorat index 1.BigIntegerBigInteger. gcd(BigInteger value)Returns aBigIntegerwhose value is greatest common divisor ofthisandvalue.BigIntegerBigInteger. max(BigInteger value)Returns the maximum of thisBigIntegerandvalue.BigIntegerBigInteger. min(BigInteger value)Returns the minimum of thisBigIntegerandvalue.BigIntegerBigInteger. mod(BigInteger m)Returns aBigIntegerwhose value isthis mod m.BigIntegerBigInteger. modInverse(BigInteger m)Returns aBigIntegerwhose value is1/this mod m.BigIntegerBigInteger. modPow(BigInteger exponent, BigInteger modulus)Returns aBigIntegerwhose value ispow(this, exponent) mod modulus.BigIntegerBigInteger. multiply(BigInteger value)Returns aBigIntegerwhose value isthis * value.BigIntegerBigInteger. or(BigInteger value)Returns aBigIntegerwhose value isthis | value.BigIntegerBigInteger. remainder(BigInteger divisor)Returns aBigIntegerwhose value isthis % divisor.BigIntegerBigInteger. subtract(BigInteger value)Returns aBigIntegerwhose value isthis - value.BigIntegerBigInteger. xor(BigInteger value)Returns aBigIntegerwhose value isthis ^ value.Constructors in java.math with parameters of type BigInteger Constructor Description BigDecimal(BigInteger val)Constructs a newBigDecimalinstance from the given big integerval.BigDecimal(BigInteger unscaledVal, int scale)Constructs a newBigDecimalinstance from a given unscaled valueunscaledValand a given scale.BigDecimal(BigInteger unscaledVal, int scale, MathContext mc)Constructs a newBigDecimalinstance from a given unscaled valueunscaledValand a given scale.BigDecimal(BigInteger val, MathContext mc)Constructs a newBigDecimalinstance from the given big integerval. -
Uses of BigInteger in java.security.cert
Methods in java.security.cert that return BigInteger Modifier and Type Method Description BigIntegerX509CRLSelector. getMaxCRL()Returns the criterion for the maximum CRL number.BigIntegerX509CRLSelector. getMinCRL()Returns the criterion for the minimum CRL number.abstract BigIntegerX509Certificate. getSerialNumber()Returns theserialNumberof the certificate.BigIntegerX509CertSelector. getSerialNumber()Returns the serial number that a certificate must match.abstract BigIntegerX509CRLEntry. getSerialNumber()Returns the serial number of the revoked certificate.Methods in java.security.cert with parameters of type BigInteger Modifier and Type Method Description abstract X509CRLEntryX509CRL. getRevokedCertificate(BigInteger serialNumber)Returns the CRL entry with the specified certificate serial number.voidX509CRLSelector. setMaxCRLNumber(BigInteger maxCRL)Sets the criterion for the maximum CRL number.voidX509CRLSelector. setMinCRLNumber(BigInteger minCRL)Sets the criterion for the minimum CRL number.voidX509CertSelector. setSerialNumber(BigInteger serialNumber)Sets the serial number that a certificate must match. -
Uses of BigInteger in java.security.interfaces
Methods in java.security.interfaces that return BigInteger Modifier and Type Method Description BigIntegerRSAMultiPrimePrivateCrtKey. getCrtCoefficient()Returns the CRT coefficient,q^-1 mod p.BigIntegerRSAPrivateCrtKey. getCrtCoefficient()Returns the CRT coefficient,q^-1 mod p.BigIntegerDSAParams. getG()Returns the base (g) value.BigIntegerRSAKey. getModulus()Returns the modulus.BigIntegerDSAParams. getP()Returns the prime (p) value.BigIntegerRSAMultiPrimePrivateCrtKey. getPrimeExponentP()Returns the CRT exponent of the primep.BigIntegerRSAPrivateCrtKey. getPrimeExponentP()Returns the CRT exponent of the primetp.BigIntegerRSAMultiPrimePrivateCrtKey. getPrimeExponentQ()Returns the CRT exponent of the primeq.BigIntegerRSAPrivateCrtKey. getPrimeExponentQ()Returns the CRT exponent of the primeq.BigIntegerRSAMultiPrimePrivateCrtKey. getPrimeP()Returns the prime factorpofn.BigIntegerRSAPrivateCrtKey. getPrimeP()Returns the prime factorpofn.BigIntegerRSAMultiPrimePrivateCrtKey. getPrimeQ()Returns the prime factorqofn.BigIntegerRSAPrivateCrtKey. getPrimeQ()Returns the prime factorqofn.BigIntegerRSAPrivateKey. getPrivateExponent()Returns the private exponentd.BigIntegerRSAMultiPrimePrivateCrtKey. getPublicExponent()Returns the public exponente.BigIntegerRSAPrivateCrtKey. getPublicExponent()Returns the public exponente.BigIntegerRSAPublicKey. getPublicExponent()Returns the public exponente.BigIntegerDSAParams. getQ()Returns the subprime (qvalue.BigIntegerECPrivateKey. getS()Returns the private valueS.BigIntegerDSAPrivateKey. getX()Returns the private key valuex.BigIntegerDSAPublicKey. getY()Returns the public key valuey. -
Uses of BigInteger in java.security.spec
Fields in java.security.spec declared as BigInteger Modifier and Type Field Description static BigIntegerRSAKeyGenParameterSpec. F0The value of the public exponentF0= 3.static BigIntegerRSAKeyGenParameterSpec. F4The value of the public exponentF4= 65537.Methods in java.security.spec that return BigInteger Modifier and Type Method Description BigIntegerEllipticCurve. getA()Returns the coefficientaof this elliptic curve.BigIntegerECPoint. getAffineX()Returns the x-coordinate.BigIntegerECPoint. getAffineY()Returns the y-coordinate.BigIntegerEllipticCurve. getB()Returns the coefficientbof this elliptic curve.BigIntegerRSAMultiPrimePrivateCrtKeySpec. getCrtCoefficient()Returns the CRT coefficient,q^-1 mod p.BigIntegerRSAOtherPrimeInfo. getCrtCoefficient()Returns the CRT coefficient.BigIntegerRSAPrivateCrtKeySpec. getCrtCoefficient()Returns the CRT coefficient,q^-1 mod p.BigIntegerRSAOtherPrimeInfo. getExponent()Returns the exponent.BigIntegerDSAParameterSpec. getG()Returns the baseg.BigIntegerDSAPrivateKeySpec. getG()Returns the baseg.BigIntegerDSAPublicKeySpec. getG()Returns the baseg.BigIntegerRSAPrivateKeySpec. getModulus()Returns the modulusn.BigIntegerRSAPublicKeySpec. getModulus()Returns the modulusn.BigIntegerECParameterSpec. getOrder()Returns the order of the generator.BigIntegerDSAParameterSpec. getP()Returns the primep.BigIntegerDSAPrivateKeySpec. getP()Returns the primep.BigIntegerDSAPublicKeySpec. getP()Returns the primep.BigIntegerECFieldFp. getP()Returns the prime valuepfor this finite field.BigIntegerRSAOtherPrimeInfo. getPrime()Returns the prime factor.BigIntegerRSAMultiPrimePrivateCrtKeySpec. getPrimeExponentP()Returns the exponent of the primep.BigIntegerRSAPrivateCrtKeySpec. getPrimeExponentP()Returns the exponent of the primep.BigIntegerRSAMultiPrimePrivateCrtKeySpec. getPrimeExponentQ()Returns the exponent of the primeq.BigIntegerRSAPrivateCrtKeySpec. getPrimeExponentQ()Returns the exponent of the primeq.BigIntegerRSAMultiPrimePrivateCrtKeySpec. getPrimeP()Returns the prime factorp.BigIntegerRSAPrivateCrtKeySpec. getPrimeP()Returns the prime factorp.BigIntegerRSAMultiPrimePrivateCrtKeySpec. getPrimeQ()Returns the prime factorq.BigIntegerRSAPrivateCrtKeySpec. getPrimeQ()Returns the prime factorq.BigIntegerRSAPrivateKeySpec. getPrivateExponent()Returns the private exponente.BigIntegerRSAKeyGenParameterSpec. getPublicExponent()Returns the value of the public exponent.BigIntegerRSAMultiPrimePrivateCrtKeySpec. getPublicExponent()Returns the public exponente.BigIntegerRSAPrivateCrtKeySpec. getPublicExponent()Returns the public exponente.BigIntegerRSAPublicKeySpec. getPublicExponent()Returns the public exponentd.BigIntegerDSAParameterSpec. getQ()Returns the sub-primeq.BigIntegerDSAPrivateKeySpec. getQ()Returns the sub-primeq.BigIntegerDSAPublicKeySpec. getQ()Returns the sub-primeq.BigIntegerECFieldF2m. getReductionPolynomial()Returns the base of the reduction polynomial with the n-th bit corresponding to the n-th coefficient of the reduction polynomial for a polynomial basis.BigIntegerECPrivateKeySpec. getS()Returns the private valueS.BigIntegerDSAPrivateKeySpec. getX()Returns the private keyx.BigIntegerDSAPublicKeySpec. getY()Returns the public key valuey.Constructors in java.security.spec with parameters of type BigInteger Constructor Description DSAParameterSpec(BigInteger p, BigInteger q, BigInteger g)Creates a newDSAParameterSpecwith the specified primep, sub-primeqand the baseg.DSAPrivateKeySpec(BigInteger x, BigInteger p, BigInteger q, BigInteger g)Creates a newDSAPrivateKeySpecwith the specified private key, prime, sub-prime and base.DSAPublicKeySpec(BigInteger y, BigInteger p, BigInteger q, BigInteger g)Creates a newDSAPublicKeySpecwith the specified public key, prime, sub-prime and base.ECFieldF2m(int m, BigInteger rp)Creates a newECFieldF2mwith2^melements with a polynomial basis and the reduction polynomial based onrp.ECFieldFp(BigInteger p)Creates a new prime finite field of an elliptic curve with the specified primep.ECParameterSpec(EllipticCurve curve, ECPoint generator, BigInteger order, int cofactor)Creates a newECParameterSpecwith the specified elliptic curve, the base point, the order of the generator (or base point) and the co-factor.ECParameterSpec(EllipticCurve curve, ECPoint generator, BigInteger order, int cofactor, String curveName)Creates a newECParameterSpecwith the specified named curve and all of its parameters.ECPoint(BigInteger affineX, BigInteger affineY)Creates a new point at the specified coordinates.ECPrivateKeySpec(BigInteger s, ECParameterSpec params)Creates a newECPrivateKeySpecwith the specified private valueSand parameter specification.EllipticCurve(ECField field, BigInteger a, BigInteger b)Creates a newEllipticCurvewith the specified field and coefficients.EllipticCurve(ECField field, BigInteger a, BigInteger b, byte[] seed)Creates a newEllipticCurvewith the specified field, coefficients and seed.RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent)Creates a newRSAKeyGenParameterSpecwith the specified key size and public exponent.RSAMultiPrimePrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient, RSAOtherPrimeInfo[] otherPrimeInfo)Creates a newRSAMultiPrimePrivateCrtKeySpecwith the specified modulus, public exponent, private exponent, prime factors, prime exponents, crt coefficient, and additional primes.RSAOtherPrimeInfo(BigInteger prime, BigInteger primeExponent, BigInteger crtCoefficient)Creates a newRSAOtherPrimeInfowith the specified prime, exponent, and CRT coefficient.RSAPrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient)Creates a newRSAMultiPrimePrivateCrtKeySpecwith the specified modulus, public exponent, private exponent, prime factors, prime exponents, crt coefficient, and additional primes.RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent)Creates a newRSAPrivateKeySpecwith the specified modulus and private exponent.RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent)Creates a newRSAPublicKeySpecwith the specified modulus and public exponent. -
Uses of BigInteger in java.util
Methods in java.util that return BigInteger Modifier and Type Method Description BigIntegerScanner. nextBigInteger()Returns the next token as aBigIntegerin the current radix.BigIntegerScanner. nextBigInteger(int radix)Returns the next token as aBigIntegerwith the specified radix. -
Uses of BigInteger in javax.crypto.interfaces
Methods in javax.crypto.interfaces that return BigInteger Modifier and Type Method Description BigIntegerDHPrivateKey. getX()Returns this key's private value x.BigIntegerDHPublicKey. getY()Returns this key's public value Y. -
Uses of BigInteger in javax.crypto.spec
Methods in javax.crypto.spec that return BigInteger Modifier and Type Method Description BigIntegerDHParameterSpec. getG()Returns the base generator of this parameter specification.BigIntegerDHPrivateKeySpec. getG()Returns the base generatorg.BigIntegerDHPublicKeySpec. getG()Returns the base generatorg;BigIntegerDHParameterSpec. getP()Returns the prime modulus of this parameter specification.BigIntegerDHPrivateKeySpec. getP()Returns the prime modulusp.BigIntegerDHPublicKeySpec. getP()Returns the prime modulusp.BigIntegerDHPrivateKeySpec. getX()Returns the private valuex.BigIntegerDHPublicKeySpec. getY()Returns the public valuey.Constructors in javax.crypto.spec with parameters of type BigInteger Constructor Description DHParameterSpec(BigInteger p, BigInteger g)Creates a newDHParameterSpecinstance with the specified prime modulus and base generator.DHParameterSpec(BigInteger p, BigInteger g, int l)Creates a newDHParameterSpecinstance with the specified prime modulus, base generator and size (in bits) of the random exponent.DHPrivateKeySpec(BigInteger x, BigInteger p, BigInteger g)Creates a newDHPrivateKeySpecwith the specified private valuex.DHPublicKeySpec(BigInteger y, BigInteger p, BigInteger g)Creates a newDHPublicKeySpecinstance with the specified public valuey, the prime moduluspand the base generatorg. -
Uses of BigInteger in javax.security.cert
Methods in javax.security.cert that return BigInteger Modifier and Type Method Description abstract BigIntegerX509Certificate. getSerialNumber()Returns theserialNumberof the certificate. -
Uses of BigInteger in javax.xml.datatype
Methods in javax.xml.datatype that return BigInteger Modifier and Type Method Description abstract BigIntegerXMLGregorianCalendar. getEon()Return high order component for XML Schema 1.0 dateTime datatype field foryear.abstract BigIntegerXMLGregorianCalendar. getEonAndYear()Return XML Schema 1.0 dateTime datatype field foryear.Methods in javax.xml.datatype with parameters of type BigInteger Modifier and Type Method Description abstract DurationDatatypeFactory. newDuration(boolean isPositive, BigInteger years, BigInteger months, BigInteger days, BigInteger hours, BigInteger minutes, BigDecimal seconds)Obtain a new instance of aDurationspecifying theDurationas isPositive, years, months, days, hours, minutes, seconds.DurationDatatypeFactory. newDurationDayTime(boolean isPositive, BigInteger day, BigInteger hour, BigInteger minute, BigInteger second)Create aDurationof typexdt:dayTimeDurationusing the specifiedday,hour,minuteandsecondas defined in XQuery 1.0 and XPath 2.0 Data Model, xdt:dayTimeDuration.DurationDatatypeFactory. newDurationYearMonth(boolean isPositive, BigInteger year, BigInteger month)Create aDurationof typexdt:yearMonthDurationusing the specifiedyearandmonthas defined in XQuery 1.0 and XPath 2.0 Data Model, xdt:yearMonthDuration.abstract XMLGregorianCalendarDatatypeFactory. newXMLGregorianCalendar(BigInteger year, int month, int day, int hour, int minute, int second, BigDecimal fractionalSecond, int timezone)Constructor allowing for complete value spaces allowed by W3C XML Schema 1.0 recommendation for xsd:dateTime and related builtin datatypes.abstract voidXMLGregorianCalendar. setYear(BigInteger year)Set low and high order component of XSDdateTimeyear field. -
Uses of BigInteger in libcore.icu
Methods in libcore.icu with parameters of type BigInteger Modifier and Type Method Description char[]NativeDecimalFormat. formatBigInteger(BigInteger value, FieldPosition field) -
Uses of BigInteger in org.apache.harmony.security.asn1
Methods in org.apache.harmony.security.asn1 that return BigInteger Modifier and Type Method Description static BigIntegerASN1Integer. toBigIntegerValue(Object decoded)Converts decoded ASN.1 Integer to a BigInteger. -
Uses of BigInteger in org.apache.harmony.security.pkcs7
Methods in org.apache.harmony.security.pkcs7 that return BigInteger Modifier and Type Method Description BigIntegerSignerInfo. getSerialNumber() -
Uses of BigInteger in org.apache.harmony.security.provider.cert
Methods in org.apache.harmony.security.provider.cert that return BigInteger Modifier and Type Method Description BigIntegerX509CertImpl. getSerialNumber()BigIntegerX509CRLEntryImpl. getSerialNumber()Methods in org.apache.harmony.security.provider.cert with parameters of type BigInteger Modifier and Type Method Description X509CRLEntryX509CRLImpl. getRevokedCertificate(BigInteger serialNumber)Method searches for CRL entry with specified serial number. -
Uses of BigInteger in org.apache.harmony.security.provider.crypto
Methods in org.apache.harmony.security.provider.crypto that return BigInteger Modifier and Type Method Description BigIntegerDSAPrivateKeyImpl. getX()BigIntegerDSAPublicKeyImpl. getY() -
Uses of BigInteger in org.apache.harmony.security.x509
Methods in org.apache.harmony.security.x509 that return BigInteger Modifier and Type Method Description BigIntegerAuthorityKeyIdentifier. getAuthorityCertSerialNumber()The serial number of the certificate identified by this authority key identifier.BigIntegerCRLNumber. getNumber()Returns the invalidity date.BigIntegerTBSCertificate. getSerialNumber()Returns the value of serialNumber field of the structure.BigIntegerTBSCertList.RevokedCertificate. getUserCertificate()Constructors in org.apache.harmony.security.x509 with parameters of type BigInteger Constructor Description AuthorityKeyIdentifier(byte[] keyIdentifier, GeneralNames authorityCertIssuer, BigInteger authorityCertSerialNumber)PolicyConstraints(BigInteger requireExplicitPolicy, BigInteger inhibitPolicyMapping)RevokedCertificate(BigInteger userCertificate, Date revocationDate, Extensions crlEntryExtensions)TBSCertificate(int version, BigInteger serialNumber, AlgorithmIdentifier signature, Name issuer, Validity validity, Name subject, SubjectPublicKeyInfo subjectPublicKeyInfo, boolean[] issuerUniqueID, boolean[] subjectUniqueID, Extensions extensions) -
Uses of BigInteger in org.apache.harmony.security.x509.tsp
Methods in org.apache.harmony.security.x509.tsp that return BigInteger Modifier and Type Method Description BigIntegerTimeStampReq. getNonce()BigIntegerTSTInfo. getNonce()BigIntegerTSTInfo. getSerialNumber()Constructors in org.apache.harmony.security.x509.tsp with parameters of type BigInteger Constructor Description TimeStampReq(int version, MessageImprint messageImprint, String reqPolicy, BigInteger nonce, Boolean certReq, Extensions extensions)TSTInfo(int version, String policy, MessageImprint messageImprint, BigInteger serialNumber, Date genTime, int[] accuracy, Boolean ordering, BigInteger nonce, GeneralName tsa, Extensions extensions) -
Uses of BigInteger in org.bouncycastle.asn1
Methods in org.bouncycastle.asn1 that return BigInteger Modifier and Type Method Description BigIntegerDERInteger. getPositiveValue()in some cases positive values get crammed into a space, that's not quite big enough...BigIntegerDEREnumerated. getValue()BigIntegerDERInteger. getValue()Constructors in org.bouncycastle.asn1 with parameters of type BigInteger Constructor Description ASN1Enumerated(BigInteger value)ASN1Integer(BigInteger value)DEREnumerated(BigInteger value)DERInteger(BigInteger value) -
Uses of BigInteger in org.bouncycastle.asn1.cms
Constructors in org.bouncycastle.asn1.cms with parameters of type BigInteger Constructor Description IssuerAndSerialNumber(X500Name name, BigInteger serialNumber)IssuerAndSerialNumber(X509Name name, BigInteger serialNumber)Deprecated.use X500Name constructor -
Uses of BigInteger in org.bouncycastle.asn1.pkcs
Methods in org.bouncycastle.asn1.pkcs that return BigInteger Modifier and Type Method Description BigIntegerRSAPrivateKey. getCoefficient()BigIntegerRSAPrivateKeyStructure. getCoefficient()Deprecated.BigIntegerRSAPrivateKey. getExponent1()BigIntegerRSAPrivateKeyStructure. getExponent1()Deprecated.BigIntegerRSAPrivateKey. getExponent2()BigIntegerRSAPrivateKeyStructure. getExponent2()Deprecated.BigIntegerDHParameter. getG()BigIntegerMacData. getIterationCount()BigIntegerPBEParameter. getIterationCount()BigIntegerPBKDF2Params. getIterationCount()BigIntegerPKCS12PBEParams. getIterations()BigIntegerPBKDF2Params. getKeyLength()BigIntegerDHParameter. getL()BigIntegerRSAPrivateKey. getModulus()BigIntegerRSAPrivateKeyStructure. getModulus()Deprecated.BigIntegerRSAPublicKey. getModulus()BigIntegerDHParameter. getP()BigIntegerRSAPrivateKey. getPrime1()BigIntegerRSAPrivateKeyStructure. getPrime1()Deprecated.BigIntegerRSAPrivateKey. getPrime2()BigIntegerRSAPrivateKeyStructure. getPrime2()Deprecated.BigIntegerRSAPrivateKey. getPrivateExponent()BigIntegerRSAPrivateKeyStructure. getPrivateExponent()Deprecated.BigIntegerRSAPrivateKey. getPublicExponent()BigIntegerRSAPrivateKeyStructure. getPublicExponent()Deprecated.BigIntegerRSAPublicKey. getPublicExponent()BigIntegerRSASSAPSSparams. getSaltLength()BigIntegerRSASSAPSSparams. getTrailerField()BigIntegerRSAPrivateKey. getVersion()Constructors in org.bouncycastle.asn1.pkcs with parameters of type BigInteger Constructor Description DHParameter(BigInteger p, BigInteger g, int l)IssuerAndSerialNumber(X500Name name, BigInteger certSerialNumber)IssuerAndSerialNumber(X509Name name, BigInteger certSerialNumber)RSAPrivateKey(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger prime1, BigInteger prime2, BigInteger exponent1, BigInteger exponent2, BigInteger coefficient)RSAPrivateKeyStructure(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger prime1, BigInteger prime2, BigInteger exponent1, BigInteger exponent2, BigInteger coefficient)Deprecated.RSAPublicKey(BigInteger modulus, BigInteger publicExponent) -
Uses of BigInteger in org.bouncycastle.asn1.sec
Methods in org.bouncycastle.asn1.sec that return BigInteger Modifier and Type Method Description BigIntegerECPrivateKey. getKey()BigIntegerECPrivateKeyStructure. getKey()Deprecated.Constructors in org.bouncycastle.asn1.sec with parameters of type BigInteger Constructor Description ECPrivateKey(BigInteger key)ECPrivateKey(BigInteger key, ASN1Object parameters)ECPrivateKey(BigInteger key, DERBitString publicKey, ASN1Object parameters)ECPrivateKeyStructure(BigInteger key)Deprecated.ECPrivateKeyStructure(BigInteger key, ASN1Encodable parameters)Deprecated.ECPrivateKeyStructure(BigInteger key, DERBitString publicKey, ASN1Encodable parameters)Deprecated. -
Uses of BigInteger in org.bouncycastle.asn1.x509
Methods in org.bouncycastle.asn1.x509 that return BigInteger Modifier and Type Method Description BigIntegerAuthorityKeyIdentifier. getAuthorityCertSerialNumber()BigIntegerCRLNumber. getCRLNumber()BigIntegerDSAParameter. getG()BigIntegerGeneralSubtree. getMaximum()BigIntegerGeneralSubtree. getMinimum()BigIntegerRSAPublicKeyStructure. getModulus()Deprecated.BigIntegerDSAParameter. getP()BigIntegerBasicConstraints. getPathLenConstraint()BigIntegerRSAPublicKeyStructure. getPublicExponent()Deprecated.BigIntegerDSAParameter. getQ()BigIntegerCRLReason. getValue()Constructors in org.bouncycastle.asn1.x509 with parameters of type BigInteger Constructor Description AuthorityKeyIdentifier(byte[] keyIdentifier, GeneralNames name, BigInteger serialNumber)create an AuthorityKeyIdentifier with a precomputed key identifier and the GeneralNames tag and the serial number provided as well.AuthorityKeyIdentifier(GeneralNames name, BigInteger serialNumber)create an AuthorityKeyIdentifier with the GeneralNames tag and the serial number provided.AuthorityKeyIdentifier(SubjectPublicKeyInfo spki, GeneralNames name, BigInteger serialNumber)create an AuthorityKeyIdentifier with the GeneralNames tag and the serial number provided as well.CRLNumber(BigInteger number)DSAParameter(BigInteger p, BigInteger q, BigInteger g)GeneralSubtree(GeneralName base, BigInteger minimum, BigInteger maximum)Constructor from a given details.IssuerSerial(GeneralNames issuer, BigInteger serial)RSAPublicKeyStructure(BigInteger modulus, BigInteger publicExponent)Deprecated. -
Uses of BigInteger in org.bouncycastle.asn1.x9
Methods in org.bouncycastle.asn1.x9 that return BigInteger Modifier and Type Method Description BigIntegerX9ECParameters. getH()BigIntegerX9ECParameters. getN()Methods in org.bouncycastle.asn1.x9 with parameters of type BigInteger Modifier and Type Method Description byte[]X9IntegerConverter. integerToBytes(BigInteger s, int qLength)Constructors in org.bouncycastle.asn1.x9 with parameters of type BigInteger Constructor Description X9ECParameters(ECCurve curve, ECPoint g, BigInteger n)X9ECParameters(ECCurve curve, ECPoint g, BigInteger n, BigInteger h)X9ECParameters(ECCurve curve, ECPoint g, BigInteger n, BigInteger h, byte[] seed)X9FieldElement(BigInteger p, ASN1OctetString s)X9FieldID(BigInteger primeP)Constructor for elliptic curves over prime fieldsF2. -
Uses of BigInteger in org.bouncycastle.cert
Methods in org.bouncycastle.cert that return BigInteger Modifier and Type Method Description BigIntegerAttributeCertificateHolder. getSerialNumber()Return the serial number associated with the issuer attached to this holder.BigIntegerX509AttributeCertificateHolder. getSerialNumber()Return the serial number of this attribute certificate.BigIntegerX509CertificateHolder. getSerialNumber()Return the serial number of this attribute certificate.BigIntegerX509CRLEntryHolder. getSerialNumber()Return the serial number of the certificate associated with this CRLEntry.Methods in org.bouncycastle.cert with parameters of type BigInteger Modifier and Type Method Description X509CRLEntryHolderX509CRLHolder. getRevokedCertificate(BigInteger serialNumber)Constructors in org.bouncycastle.cert with parameters of type BigInteger Constructor Description AttributeCertificateHolder(X500Name issuerName, BigInteger serialNumber) -
Uses of BigInteger in org.bouncycastle.cert.selector
Methods in org.bouncycastle.cert.selector that return BigInteger Modifier and Type Method Description BigIntegerX509CertificateHolderSelector. getSerialNumber()Constructors in org.bouncycastle.cert.selector with parameters of type BigInteger Constructor Description X509CertificateHolderSelector(X500Name issuer, BigInteger serialNumber)Construct a signer ID based on the issuer and serial number of the signer's associated certificate.X509CertificateHolderSelector(X500Name issuer, BigInteger serialNumber, byte[] subjectKeyId)Construct a signer ID based on the issuer and serial number of the signer's associated certificate. -
Uses of BigInteger in org.bouncycastle.cms
Methods in org.bouncycastle.cms that return BigInteger Modifier and Type Method Description BigIntegerSignerId. getSerialNumber()Constructors in org.bouncycastle.cms with parameters of type BigInteger Constructor Description SignerId(X500Name issuer, BigInteger serialNumber)Construct a signer ID based on the issuer and serial number of the signer's associated certificate.SignerId(X500Name issuer, BigInteger serialNumber, byte[] subjectKeyId)Construct a signer ID based on the issuer and serial number of the signer's associated certificate. -
Uses of BigInteger in org.bouncycastle.crypto
Methods in org.bouncycastle.crypto that return BigInteger Modifier and Type Method Description BigIntegerBasicAgreement. calculateAgreement(CipherParameters pubKey)given a public key from a given party calculate the next message in the agreement sequence.BigInteger[]DSA. generateSignature(byte[] message)sign the passed in message (usually the output of a hash function).Methods in org.bouncycastle.crypto with parameters of type BigInteger Modifier and Type Method Description booleanDSA. verifySignature(byte[] message, BigInteger r, BigInteger s)verify the message message against the signature values r and s. -
Uses of BigInteger in org.bouncycastle.crypto.agreement
Methods in org.bouncycastle.crypto.agreement that return BigInteger Modifier and Type Method Description BigIntegerDHBasicAgreement. calculateAgreement(CipherParameters pubKey)given a short term public key from a given party calculate the next message in the agreement sequence.BigIntegerECDHBasicAgreement. calculateAgreement(CipherParameters pubKey) -
Uses of BigInteger in org.bouncycastle.crypto.params
Methods in org.bouncycastle.crypto.params that return BigInteger Modifier and Type Method Description BigIntegerECPrivateKeyParameters. getD()BigIntegerRSAPrivateCrtKeyParameters. getDP()BigIntegerRSAPrivateCrtKeyParameters. getDQ()BigIntegerRSAKeyParameters. getExponent()BigIntegerDHParameters. getG()BigIntegerDSAParameters. getG()BigIntegerECDomainParameters. getH()BigIntegerDHParameters. getJ()Return the subgroup factor J.BigIntegerRSAKeyParameters. getModulus()BigIntegerECDomainParameters. getN()BigIntegerDHParameters. getP()BigIntegerDSAParameters. getP()BigIntegerRSAPrivateCrtKeyParameters. getP()BigIntegerRSAKeyGenerationParameters. getPublicExponent()BigIntegerRSAPrivateCrtKeyParameters. getPublicExponent()BigIntegerDHParameters. getQ()BigIntegerDSAParameters. getQ()BigIntegerRSAPrivateCrtKeyParameters. getQ()BigIntegerRSAPrivateCrtKeyParameters. getQInv()BigIntegerDHPrivateKeyParameters. getX()BigIntegerDSAPrivateKeyParameters. getX()BigIntegerDHPublicKeyParameters. getY()BigIntegerDSAPublicKeyParameters. getY() -
Uses of BigInteger in org.bouncycastle.crypto.signers
Methods in org.bouncycastle.crypto.signers that return BigInteger Modifier and Type Method Description BigInteger[]DSASigner. generateSignature(byte[] message)generate a signature for the given message using the key we were initialised with.BigInteger[]ECDSASigner. generateSignature(byte[] message)generate a signature for the given message using the key we were initialised with.Methods in org.bouncycastle.crypto.signers with parameters of type BigInteger Modifier and Type Method Description booleanDSASigner. verifySignature(byte[] message, BigInteger r, BigInteger s)return true if the value r and s represent a DSA signature for the passed in message for standard DSA the message should be a SHA-1 hash of the real message to be verified.booleanECDSASigner. verifySignature(byte[] message, BigInteger r, BigInteger s)return true if the value r and s represent a DSA signature for the passed in message (for standard DSA the message should be a SHA-1 hash of the real message to be verified). -
Uses of BigInteger in org.bouncycastle.jcajce.provider.asymmetric.dh
Methods in org.bouncycastle.jcajce.provider.asymmetric.dh that return BigInteger Modifier and Type Method Description BigIntegerBCDHPrivateKey. getX()BigIntegerBCDHPublicKey. getY() -
Uses of BigInteger in org.bouncycastle.jcajce.provider.asymmetric.dsa
Methods in org.bouncycastle.jcajce.provider.asymmetric.dsa that return BigInteger Modifier and Type Method Description BigIntegerBCDSAPrivateKey. getX()BigIntegerBCDSAPublicKey. getY() -
Uses of BigInteger in org.bouncycastle.jcajce.provider.asymmetric.ec
Methods in org.bouncycastle.jcajce.provider.asymmetric.ec that return BigInteger Modifier and Type Method Description BigIntegerBCECPrivateKey. getD()BigIntegerBCECPrivateKey. getS() -
Uses of BigInteger in org.bouncycastle.jcajce.provider.asymmetric.rsa
Fields in org.bouncycastle.jcajce.provider.asymmetric.rsa declared as BigInteger Modifier and Type Field Description protected BigIntegerBCRSAPrivateKey. modulusprotected BigIntegerBCRSAPrivateKey. privateExponentMethods in org.bouncycastle.jcajce.provider.asymmetric.rsa that return BigInteger Modifier and Type Method Description BigIntegerBCRSAPrivateCrtKey. getCrtCoefficient()return the CRT coefficient.BigIntegerBCRSAPrivateKey. getModulus()BigIntegerBCRSAPublicKey. getModulus()return the modulus.BigIntegerBCRSAPrivateCrtKey. getPrimeExponentP()return the prime exponent for P.BigIntegerBCRSAPrivateCrtKey. getPrimeExponentQ()return the prime exponent for Q.BigIntegerBCRSAPrivateCrtKey. getPrimeP()return the prime P.BigIntegerBCRSAPrivateCrtKey. getPrimeQ()return the prime Q.BigIntegerBCRSAPrivateKey. getPrivateExponent()BigIntegerBCRSAPrivateCrtKey. getPublicExponent()return the public exponent.BigIntegerBCRSAPublicKey. getPublicExponent()return the public exponent. -
Uses of BigInteger in org.bouncycastle.jcajce.provider.asymmetric.util
Methods in org.bouncycastle.jcajce.provider.asymmetric.util that return BigInteger Modifier and Type Method Description BigInteger[]DSAEncoder. decode(byte[] sig)Methods in org.bouncycastle.jcajce.provider.asymmetric.util with parameters of type BigInteger Modifier and Type Method Description byte[]DSAEncoder. encode(BigInteger r, BigInteger s) -
Uses of BigInteger in org.bouncycastle.jce.interfaces
Methods in org.bouncycastle.jce.interfaces that return BigInteger Modifier and Type Method Description BigIntegerECPrivateKey. getD()return the private value D. -
Uses of BigInteger in org.bouncycastle.jce.provider
Fields in org.bouncycastle.jce.provider declared as BigInteger Modifier and Type Field Description protected BigIntegerJCERSAPrivateKey. modulusprotected BigIntegerJCERSAPrivateKey. privateExponentFields in org.bouncycastle.jce.provider with type parameters of type BigInteger Modifier and Type Field Description Set<BigInteger>CertBlacklist. serialBlacklistMethods in org.bouncycastle.jce.provider that return BigInteger Modifier and Type Method Description BigIntegerJCERSAPrivateCrtKey. getCrtCoefficient()return the CRT coefficient.BigIntegerJCEECPrivateKey. getD()BigIntegerJCERSAPrivateKey. getModulus()BigIntegerJCERSAPublicKey. getModulus()return the modulus.BigIntegerJCERSAPrivateCrtKey. getPrimeExponentP()return the prime exponent for P.BigIntegerJCERSAPrivateCrtKey. getPrimeExponentQ()return the prime exponent for Q.BigIntegerJCERSAPrivateCrtKey. getPrimeP()return the prime P.BigIntegerJCERSAPrivateCrtKey. getPrimeQ()return the prime Q.BigIntegerJCERSAPrivateKey. getPrivateExponent()BigIntegerJCERSAPrivateCrtKey. getPublicExponent()return the public exponent.BigIntegerJCERSAPublicKey. getPublicExponent()return the public exponent.BigIntegerJCEECPrivateKey. getS()BigIntegerX509CertificateObject. getSerialNumber()BigIntegerX509CRLEntryObject. getSerialNumber()BigIntegerJCEDHPrivateKey. getX()BigIntegerJDKDSAPrivateKey. getX()BigIntegerJCEDHPublicKey. getY()BigIntegerJDKDSAPublicKey. getY()Methods in org.bouncycastle.jce.provider with parameters of type BigInteger Modifier and Type Method Description X509CRLEntryX509CRLObject. getRevokedCertificate(BigInteger serialNumber)booleanCertBlacklist. isSerialNumberBlackListed(BigInteger serial) -
Uses of BigInteger in org.bouncycastle.jce.spec
Methods in org.bouncycastle.jce.spec that return BigInteger Modifier and Type Method Description BigIntegerECPrivateKeySpec. getD()return the private number DBigIntegerECParameterSpec. getH()return the cofactor H to the order of G.BigIntegerECParameterSpec. getN()return the order N of G -
Uses of BigInteger in org.bouncycastle.math.ec
Fields in org.bouncycastle.math.ec declared as BigInteger Modifier and Type Field Description static BigIntegerECConstants. FOURstatic BigIntegerECConstants. ONEstatic BigIntegerECConstants. THREEstatic BigIntegerECConstants. TWOstatic BigIntegerECConstants. ZEROMethods in org.bouncycastle.math.ec that return BigInteger Modifier and Type Method Description BigIntegerECCurve.F2m. getH()BigIntegerECCurve.F2m. getN()BigIntegerECCurve.Fp. getQ()BigIntegerECFieldElement.Fp. getQ()BigIntegerECFieldElement.F2m. toBigInteger()BigIntegerECFieldElement.Fp. toBigInteger()abstract BigIntegerECFieldElement. toBigInteger()Methods in org.bouncycastle.math.ec with parameters of type BigInteger Modifier and Type Method Description abstract ECPointECCurve. createPoint(BigInteger x, BigInteger y, boolean withCompression)ECPointECCurve.F2m. createPoint(BigInteger x, BigInteger y, boolean withCompression)ECPointECCurve.Fp. createPoint(BigInteger x, BigInteger y, boolean withCompression)protected abstract ECPointECCurve. decompressPoint(int yTilde, BigInteger X1)protected ECPointECCurve.F2m. decompressPoint(int yTilde, BigInteger X1)Decompresses a compressed point P = (xp, yp) (X9.62 s 4.2.2).protected ECPointECCurve.Fp. decompressPoint(int yTilde, BigInteger X1)ECFieldElementECCurve.F2m. fromBigInteger(BigInteger x)ECFieldElementECCurve.Fp. fromBigInteger(BigInteger x)abstract ECFieldElementECCurve. fromBigInteger(BigInteger x)ECPointECPoint. multiply(BigInteger k)Multiplies thisECPointby the given number.static ECPointECAlgorithms. shamirsTrick(ECPoint P, BigInteger k, ECPoint Q, BigInteger l)static ECPointECAlgorithms. sumOfTwoMultiplies(ECPoint P, BigInteger a, ECPoint Q, BigInteger b)Constructors in org.bouncycastle.math.ec with parameters of type BigInteger Constructor Description F2m(int m, int k1, int k2, int k3, BigInteger a, BigInteger b)Constructor for Pentanomial Polynomial Basis (PPB).F2m(int m, int k1, int k2, int k3, BigInteger a, BigInteger b, BigInteger n, BigInteger h)Constructor for Pentanomial Polynomial Basis (PPB).F2m(int m, int k, BigInteger a, BigInteger b)Constructor for Trinomial Polynomial Basis (TPB).F2m(int m, int k, BigInteger a, BigInteger b, BigInteger n, BigInteger h)Constructor for Trinomial Polynomial Basis (TPB).F2m(int m, int k1, int k2, int k3, BigInteger x)Constructor for PPB.F2m(int m, int k, BigInteger x)Constructor for TPB.Fp(BigInteger q, BigInteger a, BigInteger b)Fp(BigInteger q, BigInteger x) -
Uses of BigInteger in org.bouncycastle.util
Methods in org.bouncycastle.util that return BigInteger Modifier and Type Method Description static BigInteger[]Arrays. clone(BigInteger[] data)static BigInteger[]Arrays. copyOf(BigInteger[] data, int newLength)static BigInteger[]Arrays. copyOfRange(BigInteger[] data, int from, int to)static BigIntegerBigIntegers. createRandomInRange(BigInteger min, BigInteger max, SecureRandom random)Return a random BigInteger not less than 'min' and not greater than 'max'Methods in org.bouncycastle.util with parameters of type BigInteger Modifier and Type Method Description static booleanArrays. areEqual(BigInteger[] a, BigInteger[] b)static byte[]BigIntegers. asUnsignedByteArray(int length, BigInteger value)Return the passed in value as an unsigned byte array.static byte[]BigIntegers. asUnsignedByteArray(BigInteger value)Return the passed in value as an unsigned byte array.static BigInteger[]Arrays. clone(BigInteger[] data)static BigInteger[]Arrays. copyOf(BigInteger[] data, int newLength)static BigInteger[]Arrays. copyOfRange(BigInteger[] data, int from, int to)static BigIntegerBigIntegers. createRandomInRange(BigInteger min, BigInteger max, SecureRandom random)Return a random BigInteger not less than 'min' and not greater than 'max'static intArrays. hashCode(BigInteger[] data) -
Uses of BigInteger in org.bouncycastle.x509
Methods in org.bouncycastle.x509 that return BigInteger Modifier and Type Method Description BigIntegerX509CRLStoreSelector. getMaxBaseCRLNumber()Get the maximum base CRL number.BigIntegerAttributeCertificateHolder. getSerialNumber()Deprecated.Return the serial number associated with the issuer attached to this holder.BigIntegerX509AttributeCertificate. getSerialNumber()Return the serial number for the certificate.BigIntegerX509V2AttributeCertificate. getSerialNumber()Deprecated.Methods in org.bouncycastle.x509 with parameters of type BigInteger Modifier and Type Method Description voidX509CRLStoreSelector. setMaxBaseCRLNumber(BigInteger maxBaseCRLNumber)Sets the maximum base CRL number.voidX509V1CertificateGenerator. setSerialNumber(BigInteger serialNumber)Deprecated.set the serial number for the certificate.voidX509V3CertificateGenerator. setSerialNumber(BigInteger serialNumber)Deprecated.set the serial number for the certificate.Constructors in org.bouncycastle.x509 with parameters of type BigInteger Constructor Description AttributeCertificateHolder(X500Principal issuerName, BigInteger serialNumber)Deprecated.AttributeCertificateHolder(X509Principal issuerName, BigInteger serialNumber)Deprecated. -
Uses of BigInteger in org.conscrypt
Fields in org.conscrypt declared as BigInteger Modifier and Type Field Description protected BigIntegerOpenSSLRSAPrivateKey. modulusprotected BigIntegerOpenSSLRSAPrivateKey. privateExponentMethods in org.conscrypt that return BigInteger Modifier and Type Method Description BigIntegerOpenSSLRSAPrivateCrtKey. getCrtCoefficient()BigIntegerOpenSSLDSAParams. getG()BigIntegerOpenSSLRSAPrivateKey. getModulus()BigIntegerOpenSSLRSAPublicKey. getModulus()BigIntegerOpenSSLDSAParams. getP()BigIntegerOpenSSLRSAPrivateCrtKey. getPrimeExponentP()BigIntegerOpenSSLRSAPrivateCrtKey. getPrimeExponentQ()BigIntegerOpenSSLRSAPrivateCrtKey. getPrimeP()BigIntegerOpenSSLRSAPrivateCrtKey. getPrimeQ()BigIntegerOpenSSLRSAPrivateKey. getPrivateExponent()BigIntegerOpenSSLRSAPrivateCrtKey. getPublicExponent()BigIntegerOpenSSLRSAPublicKey. getPublicExponent()BigIntegerOpenSSLDSAParams. getQ()BigIntegerOpenSSLECPrivateKey. getS()BigIntegerOpenSSLX509Certificate. getSerialNumber()BigIntegerOpenSSLX509CRLEntry. getSerialNumber()BigIntegerOpenSSLDSAPrivateKey. getX()BigIntegerOpenSSLDSAPublicKey. getY()Methods in org.conscrypt with parameters of type BigInteger Modifier and Type Method Description static OpenSSLECGroupContextOpenSSLECGroupContext. getInstance(int type, BigInteger p, BigInteger a, BigInteger b, BigInteger x, BigInteger y, BigInteger n, BigInteger h)X509CRLEntryOpenSSLX509CRL. getRevokedCertificate(BigInteger serialNumber)static byte[]ServerKeyExchange. toUnsignedByteArray(BigInteger bi)Remove first byte if 0.static voidServerKeyExchange. updateSignatureDh(DigitalSignature ds, BigInteger p, BigInteger g, BigInteger y)static voidServerKeyExchange. updateSignatureRsa(DigitalSignature ds, BigInteger modulus, BigInteger publicExponent)Constructors in org.conscrypt with parameters of type BigInteger Constructor Description ClientKeyExchange(BigInteger dh_Yc)Creates outbound messageServerKeyExchange(BigInteger par1, BigInteger par2, BigInteger par3, byte[] hash)Creates outbound message