| Package | Description |
|---|---|
| java.awt.image |
Provides classes for creating and modifying images.
|
| java.math |
Provides classes for performing arbitrary-precision integer arithmetic (
BigInteger) and arbitrary-precision decimal arithmetic (
BigDecimal).
|
| java.security.cert |
Provides classes and interfaces for parsing and managing certificates, certificate revocation lists (CRLs), and certification paths.
|
| java.security.interfaces |
Provides interfaces for generating RSA (Rivest, Shamir and Adleman AsymmetricCipher algorithm) keys as defined in the RSA Laboratory Technical Note PKCS#1, and DSA (Digital Signature Algorithm) keys as defined in NIST's FIPS-186.
|
| java.security.spec |
Provides classes and interfaces for key specifications and algorithm parameter specifications.
|
| java.util |
Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array).
|
| javax.crypto.interfaces |
Provides interfaces for Diffie-Hellman keys as defined in RSA Laboratories' PKCS #3.
|
| javax.crypto.spec |
Provides classes and interfaces for key specifications and algorithm parameter specifications.
|
| javax.management.openmbean |
Provides the open data types and Open MBean descriptor classes.
|
| javax.security.cert |
Provides classes for public key certificates.
|
| javax.xml.bind |
Provides a runtime binding framework for client applications including unmarshalling, marshalling, and validation capabilities.
|
| javax.xml.crypto.dsig.keyinfo |
Classes for parsing and processing
KeyInfo elements and structures.
|
| javax.xml.datatype |
XML/Java Type Mappings.
|
| Modifier and Type | Method and Description |
|---|---|
BigInteger |
IndexColorModel.getValidPixels()
Returns a
BigInteger that indicates the valid/invalid pixels in the colormap.
|
| Constructor and Description | |
|---|---|
IndexColorModel(int bits, int size, int[] cmap, int start, int transferType, BigInteger
Constructs an
IndexColorModel from an
int array where each
int is comprised of red, green, blue, and alpha components in the default RGB color model format.
|
| Modifier and Type | Field and Description |
|---|---|
static BigInteger |
BigInteger.ONE
The BigInteger constant one.
|
static BigInteger |
BigInteger.TEN
The BigInteger constant ten.
|
static BigInteger |
BigInteger.ZERO
The BigInteger constant zero.
|
| Modifier and Type | Method and Description |
|---|---|
BigInteger |
BigInteger.abs()
Returns a BigInteger whose value is the absolute value of this BigInteger.
|
BigInteger |
BigInteger.add(BigInteger
Returns a BigInteger whose value is
(this + val).
|
BigInteger |
BigInteger.and(BigInteger
Returns a BigInteger whose value is
(this & val).
|
BigInteger |
BigInteger.andNot(BigInteger
Returns a BigInteger whose value is
(this & ~val).
|
BigInteger |
BigInteger.clearBit(int n)
Returns a BigInteger whose value is equivalent to this BigInteger with the designated bit cleared.
|
BigInteger |
BigInteger.divide(BigInteger
Returns a BigInteger whose value is
(this / val).
|
BigInteger |
BigInteger.divideAndRemainder(BigInteger
Returns an array of two BigIntegers containing
(this / val) followed by
(this % val).
|
BigInteger |
BigInteger.flipBit(int n)
Returns a BigInteger whose value is equivalent to this BigInteger with the designated bit flipped.
|
BigInteger |
BigInteger.gcd(BigInteger
Returns a BigInteger whose value is the greatest common divisor of
abs(this) and
abs(val).
|
BigInteger |
BigInteger.max(BigInteger
Returns the maximum of this BigInteger and
val.
|
BigInteger |
BigInteger.min(BigInteger
Returns the minimum of this BigInteger and
val.
|
BigInteger |
BigInteger.mod(BigInteger
Returns a BigInteger whose value is
(this mod m).
|
BigInteger |
BigInteger.modInverse(BigInteger
Returns a BigInteger whose value is
(this
-1
mod m).
|
BigInteger |
BigInteger.modPow(BigInteger
Returns a BigInteger whose value is
(thisexponent mod m).
|
BigInteger |
BigInteger.multiply(BigInteger
Returns a BigInteger whose value is
(this * val).
|
BigInteger |
BigInteger.negate()
Returns a BigInteger whose value is
(-this).
|
BigInteger |
BigInteger.nextProbablePrime()
Returns the first integer greater than this
BigInteger that is probably prime.
|
BigInteger |
BigInteger.not()
Returns a BigInteger whose value is
(~this).
|
BigInteger |
BigInteger.or(BigInteger
Returns a BigInteger whose value is
(this | val).
|
BigInteger |
BigInteger.pow(int exponent)
Returns a BigInteger whose value is
(thisexponent).
|
static BigInteger |
BigInteger.probablePrime(int bitLength, Random
Returns a positive BigInteger that is probably prime, with the specified bitLength.
|
BigInteger |
BigInteger.remainder(BigInteger
Returns a BigInteger whose value is
(this % val).
|
BigInteger |
BigInteger.setBit(int n)
Returns a BigInteger whose value is equivalent to this BigInteger with the designated bit set.
|
BigInteger |
BigInteger.shiftLeft(int n)
Returns a BigInteger whose value is
(this << n).
|
BigInteger |
BigInteger.shiftRight(int n)
Returns a BigInteger whose value is
(this >> n).
|
BigInteger |
BigInteger.subtract(BigInteger
Returns a BigInteger whose value is
(this - val).
|
BigInteger |
BigDecimal.toBigInteger()
Converts this
BigDecimal to a
BigInteger.
|
BigInteger |
BigDecimal.toBigIntegerExact()
Converts this
BigDecimal to a
BigInteger, checking for lost information.
|
BigInteger |
BigDecimal.unscaledValue()
Returns a
BigInteger whose value is the
unscaled value of this
BigDecimal.
|
static BigInteger |
BigInteger.valueOf(long val)
Returns a BigInteger whose value is equal to that of the specified
long.
|
BigInteger |
BigInteger.xor(BigInteger
Returns a BigInteger whose value is
(this ^ val).
|
| Modifier and Type | Method and Description |
|---|---|
BigInteger |
BigInteger.add(BigInteger
Returns a BigInteger whose value is
(this + val).
|
BigInteger |
BigInteger.and(BigInteger
Returns a BigInteger whose value is
(this & val).
|
BigInteger |
BigInteger.andNot(BigInteger
Returns a BigInteger whose value is
(this & ~val).
|
int |
BigInteger.compareTo(BigInteger
Compares this BigInteger with the specified BigInteger.
|
BigInteger |
BigInteger.divide(BigInteger
Returns a BigInteger whose value is
(this / val).
|
BigInteger |
BigInteger.divideAndRemainder(BigInteger
Returns an array of two BigIntegers containing
(this / val) followed by
(this % val).
|
BigInteger |
BigInteger.gcd(BigInteger
Returns a BigInteger whose value is the greatest common divisor of
abs(this) and
abs(val).
|
BigInteger |
BigInteger.max(BigInteger
Returns the maximum of this BigInteger and
val.
|
BigInteger |
BigInteger.min(BigInteger
Returns the minimum of this BigInteger and
val.
|
BigInteger |
BigInteger.mod(BigInteger
Returns a BigInteger whose value is
(this mod m).
|
BigInteger |
BigInteger.modInverse(BigInteger
Returns a BigInteger whose value is
(this
-1
mod m).
|
BigInteger |
BigInteger.modPow(BigInteger
Returns a BigInteger whose value is
(thisexponent mod m).
|
BigInteger |
BigInteger.multiply(BigInteger
Returns a BigInteger whose value is
(this * val).
|
BigInteger |
BigInteger.or(BigInteger
Returns a BigInteger whose value is
(this | val).
|
BigInteger |
BigInteger.remainder(BigInteger
Returns a BigInteger whose value is
(this % val).
|
BigInteger |
BigInteger.subtract(BigInteger
Returns a BigInteger whose value is
(this - val).
|
BigInteger |
BigInteger.xor(BigInteger
Returns a BigInteger whose value is
(this ^ val).
|
| Constructor and Description | |
|---|---|
BigDecimal(BigInteger
Translates a
BigInteger into a
BigDecimal.
|
|
BigDecimal(BigInteger
Translates a
BigInteger unscaled value and an
int scale into a
BigDecimal.
|
|
BigDecimal(BigInteger
Translates a
BigInteger unscaled value and an
int scale into a
BigDecimal, with rounding according to the context settings.
|
|
BigDecimal(BigInteger
Translates a
BigInteger into a
BigDecimal rounding according to the context settings.
|
| Modifier and Type | Method and Description |
|---|---|
BigInteger |
X509CRLSelector.getMaxCRL()
Returns the maxCRLNumber criterion.
|
BigInteger |
X509CRLSelector.getMinCRL()
Returns the minCRLNumber criterion.
|
abstract BigInteger |
X509CRLEntry.getSerialNumber()
Gets the serial number from this X509CRLEntry, the
userCertificate.
|
abstract BigInteger |
X509Certificate.getSerialNumber()
Gets the
serialNumber value from the certificate.
|
BigInteger |
X509CertSelector.getSerialNumber()
Returns the serialNumber criterion.
|
| Modifier and Type | Method and Description |
|---|---|
abstract X509CRLEntry |
X509CRL.getRevokedCertificate(BigInteger
Gets the CRL entry, if any, with the given certificate serialNumber.
|
void |
X509CRLSelector.setMaxCRLNumber(BigInteger
Sets the maxCRLNumber criterion.
|
void |
X509CRLSelector.setMinCRLNumber(BigInteger
Sets the minCRLNumber criterion.
|
void |
X509CertSelector.setSerialNumber(BigInteger
Sets the serialNumber criterion.
|
| Modifier and Type | Method and Description |
|---|---|
BigInteger |
RSAMultiPrimePrivateCrtKey.getCrtCoefficient()
Returns the crtCoefficient.
|
BigInteger |
RSAPrivateCrtKey.getCrtCoefficient()
Returns the crtCoefficient.
|
BigInteger |
DSAParams.getG()
Returns the base,
g.
|
BigInteger |
RSAKey.getModulus()
Returns the modulus.
|
BigInteger |
DSAParams.getP()
Returns the prime,
p.
|
BigInteger |
RSAMultiPrimePrivateCrtKey.getPrimeExponentP()
Returns the primeExponentP.
|
BigInteger |
RSAPrivateCrtKey.getPrimeExponentP()
Returns the primeExponentP.
|
BigInteger |
RSAMultiPrimePrivateCrtKey.getPrimeExponentQ()
Returns the primeExponentQ.
|
BigInteger |
RSAPrivateCrtKey.getPrimeExponentQ()
Returns the primeExponentQ.
|
BigInteger |
RSAMultiPrimePrivateCrtKey.getPrimeP()
Returns the primeP.
|
BigInteger |
RSAPrivateCrtKey.getPrimeP()
Returns the primeP.
|
BigInteger |
RSAMultiPrimePrivateCrtKey.getPrimeQ()
Returns the primeQ.
|
BigInteger |
RSAPrivateCrtKey.getPrimeQ()
Returns the primeQ.
|
BigInteger |
RSAPrivateKey.getPrivateExponent()
Returns the private exponent.
|
BigInteger |
RSAMultiPrimePrivateCrtKey.getPublicExponent()
Returns the public exponent.
|
BigInteger |
RSAPrivateCrtKey.getPublicExponent()
Returns the public exponent.
|
BigInteger |
RSAPublicKey.getPublicExponent()
Returns the public exponent.
|
BigInteger |
DSAParams.getQ()
Returns the subprime,
q.
|
BigInteger |
ECPrivateKey.getS()
Returns the private value S.
|
BigInteger |
DSAPrivateKey.getX()
Returns the value of the private key,
x.
|
BigInteger |
DSAPublicKey.getY()
Returns the value of the public key,
y.
|
| Modifier and Type | Field and Description |
|---|---|
static BigInteger |
RSAKeyGenParameterSpec.F0
The public-exponent value F0 = 3.
|
static BigInteger |
RSAKeyGenParameterSpec.F4
The public exponent-value F4 = 65537.
|
| Modifier and Type | Method and Description |
|---|---|
BigInteger |
EllipticCurve.getA()
Returns the first coefficient
a of the elliptic curve.
|
BigInteger |
ECPoint.getAffineX()
Returns the affine x-coordinate
x.
|
BigInteger |
ECPoint.getAffineY()
Returns the affine y-coordinate
y.
|
BigInteger |
EllipticCurve.getB()
Returns the second coefficient
b of the elliptic curve.
|
BigInteger |
RSAPrivateCrtKeySpec.getCrtCoefficient()
Returns the crtCoefficient.
|
BigInteger |
RSAOtherPrimeInfo.getCrtCoefficient()
Returns the prime's crtCoefficient.
|
BigInteger |
RSAMultiPrimePrivateCrtKeySpec.getCrtCoefficient()
Returns the crtCoefficient.
|
BigInteger |
RSAOtherPrimeInfo.getExponent()
Returns the prime's exponent.
|
BigInteger |
DSAPrivateKeySpec.getG()
Returns the base
g.
|
BigInteger |
DSAParameterSpec.getG()
Returns the base
g.
|
BigInteger |
DSAPublicKeySpec.getG()
Returns the base
g.
|
BigInteger |
RSAPrivateKeySpec.getModulus()
Returns the modulus.
|
BigInteger |
RSAPublicKeySpec.getModulus()
Returns the modulus.
|
BigInteger |
ECParameterSpec.getOrder()
Returns the order of the generator.
|
BigInteger |
DSAPrivateKeySpec.getP()
Returns the prime
p.
|
BigInteger |
DSAParameterSpec.getP()
Returns the prime
p.
|
BigInteger |
ECFieldFp.getP()
Returns the prime
p of this prime finite field.
|
BigInteger |
DSAPublicKeySpec.getP()
Returns the prime
p.
|
BigInteger |
RSAOtherPrimeInfo.getPrime()
Returns the prime.
|
BigInteger |
RSAPrivateCrtKeySpec.getPrimeExponentP()
Returns the primeExponentP.
|
BigInteger |
RSAMultiPrimePrivateCrtKeySpec.getPrimeExponentP()
Returns the primeExponentP.
|
BigInteger |
RSAPrivateCrtKeySpec.getPrimeExponentQ()
Returns the primeExponentQ.
|
BigInteger |
RSAMultiPrimePrivateCrtKeySpec.getPrimeExponentQ()
Returns the primeExponentQ.
|
BigInteger |
RSAPrivateCrtKeySpec.getPrimeP()
Returns the primeP.
|
BigInteger |
RSAMultiPrimePrivateCrtKeySpec.getPrimeP()
Returns the primeP.
|
BigInteger |
RSAPrivateCrtKeySpec.getPrimeQ()
Returns the primeQ.
|
BigInteger |
RSAMultiPrimePrivateCrtKeySpec.getPrimeQ()
Returns the primeQ.
|
BigInteger |
RSAPrivateKeySpec.getPrivateExponent()
Returns the private exponent.
|
BigInteger |
RSAPublicKeySpec.getPublicExponent()
Returns the public exponent.
|
BigInteger |
RSAPrivateCrtKeySpec.getPublicExponent()
Returns the public exponent.
|
BigInteger |
RSAKeyGenParameterSpec.getPublicExponent()
Returns the public-exponent value.
|
BigInteger |
RSAMultiPrimePrivateCrtKeySpec.getPublicExponent()
Returns the public exponent.
|
BigInteger |
DSAPrivateKeySpec.getQ()
Returns the sub-prime
q.
|
BigInteger |
DSAParameterSpec.getQ()
Returns the sub-prime
q.
|
BigInteger |
DSAPublicKeySpec.getQ()
Returns the sub-prime
q.
|
BigInteger |
ECFieldF2m.getReductionPolynomial()
Returns a BigInteger whose i-th bit corresponds to the i-th coefficient of the reduction polynomial for polynomial basis or null for normal basis.
|
BigInteger |
ECPrivateKeySpec.getS()
Returns the private value S.
|
BigInteger |
DSAPrivateKeySpec.getX()
Returns the private key
x.
|
BigInteger |
DSAPublicKeySpec.getY()
Returns the public key
y.
|
| Constructor and Description | |
|---|---|
DSAParameterSpec(BigInteger
Creates a new DSAParameterSpec with the specified parameter values.
|
|
DSAPrivateKeySpec(BigInteger
Creates a new DSAPrivateKeySpec with the specified parameter values.
|
|
DSAPublicKeySpec(BigInteger
Creates a new DSAPublicKeySpec with the specified parameter values.
|
|
ECFieldF2m(int m, BigInteger
Creates an elliptic curve characteristic 2 finite field which has 2^
m elements with polynomial basis.
|
|
ECFieldFp(BigInteger
Creates an elliptic curve prime finite field with the specified prime
p.
|
|
ECParameterSpec(EllipticCurve
Creates elliptic curve domain parameters based on the specified values.
|
|
ECPoint(BigInteger
Creates an ECPoint from the specified affine x-coordinate
x and affine y-coordinate
y.
|
|
ECPrivateKeySpec(BigInteger
Creates a new ECPrivateKeySpec with the specified parameter values.
|
|
EllipticCurve(ECField
Creates an elliptic curve with the specified elliptic field
field and the coefficients
a and
b.
|
|
EllipticCurve(ECField
Creates an elliptic curve with the specified elliptic field
field, the coefficients
a and
b, and the
seed used for curve generation.
|
|
RSAKeyGenParameterSpec(int keysize, BigInteger
Constructs a new
RSAParameterSpec object from the given keysize and public-exponent value.
|
|
RSAMultiPrimePrivateCrtKeySpec(BigInteger
Creates a new
RSAMultiPrimePrivateCrtKeySpec given the modulus, publicExponent, privateExponent, primeP, primeQ, primeExponentP, primeExponentQ, crtCoefficient, and otherPrimeInfo as defined in PKCS#1 v2.1.
|
|
RSAOtherPrimeInfo(BigInteger
Creates a new
RSAOtherPrimeInfo given the prime, primeExponent, and crtCoefficient as defined in PKCS#1.
|
|
RSAPrivateCrtKeySpec(BigInteger
Creates a new
RSAPrivateCrtKeySpec given the modulus, publicExponent, privateExponent, primeP, primeQ, primeExponentP, primeExponentQ, and crtCoefficient as defined in PKCS#1.
|
|
RSAPrivateKeySpec(BigInteger
Creates a new RSAPrivateKeySpec.
|
|
RSAPublicKeySpec(BigInteger
Creates a new RSAPublicKeySpec.
|
| Modifier and Type | Method and Description |
|---|---|
BigInteger |
Scanner.nextBigInteger()
Scans the next token of the input as a
BigInteger.
|
BigInteger |
Scanner.nextBigInteger(int radix)
Scans the next token of the input as a
BigInteger.
|
| Modifier and Type | Method and Description |
|---|---|
BigInteger |
DHPrivateKey.getX()
Returns the private value,
x.
|
BigInteger |
DHPublicKey.getY()
Returns the public value,
y.
|
| Modifier and Type | Method and Description |
|---|---|
BigInteger |
DHPrivateKeySpec.getG()
Returns the base generator
g.
|
BigInteger |
DHPublicKeySpec.getG()
Returns the base generator
g.
|
BigInteger |
DHParameterSpec.getG()
Returns the base generator
g.
|
BigInteger |
DHPrivateKeySpec.getP()
Returns the prime modulus
p.
|
BigInteger |
DHPublicKeySpec.getP()
Returns the prime modulus
p.
|
BigInteger |
DHParameterSpec.getP()
Returns the prime modulus
p.
|
BigInteger |
DHPrivateKeySpec.getX()
Returns the private value
x.
|
BigInteger |
DHPublicKeySpec.getY()
Returns the public value
y.
|
| Constructor and Description | |
|---|---|
DHParameterSpec(BigInteger
Constructs a parameter set for Diffie-Hellman, using a prime modulus
p and a base generator
g.
|
|
DHParameterSpec(BigInteger
Constructs a parameter set for Diffie-Hellman, using a prime modulus
p, a base generator
g, and the size in bits,
l, of the random exponent (private value).
|
|
DHPrivateKeySpec(BigInteger
Constructor that takes a private value
x, a prime modulus
p, and a base generator
g.
|
|
DHPublicKeySpec(BigInteger
Constructor that takes a public value
y, a prime modulus
p, and a base generator
g.
|
| Modifier and Type | Field and Description |
|---|---|
static SimpleType |
SimpleType.BIGINTEGER
The
SimpleType instance describing values whose Java class name is
java.math.BigInteger.
|
| Modifier and Type | Method and Description |
|---|---|
abstract BigInteger |
X509Certificate.getSerialNumber()
Gets the
serialNumber value from the certificate.
|
| Modifier and Type | Method and Description |
|---|---|
static BigInteger |
DatatypeConverter.parseInteger(String
Convert the string argument into a BigInteger value.
|
BigInteger |
DatatypeConverterInterface.parseInteger(String
Convert the string argument into a BigInteger value.
|
| Modifier and Type | Method and Description |
|---|---|
static String |
DatatypeConverter.printInteger(BigInteger
Converts a BigInteger value into a string.
|
String |
DatatypeConverterInterface.printInteger(BigInteger
Converts a BigInteger value into a string.
|
| Modifier and Type | Method and Description |
|---|---|
BigInteger |
X509IssuerSerial.getSerialNumber()
Returns the serial number of this
X509IssuerSerial.
|
| Modifier and Type | Method and Description |
|---|---|
abstract X509IssuerSerial |
KeyInfoFactory.newX509IssuerSerial(String
Creates an
X509IssuerSerial from the specified X.500 issuer distinguished name and serial number.
|
| Modifier and Type | Method and Description |
|---|---|
abstract BigInteger |
XMLGregorianCalendar.getEon()
Return high order component for XML Schema 1.0 dateTime datatype field for
year.
|
abstract BigInteger |
XMLGregorianCalendar.getEonAndYear()
Return XML Schema 1.0 dateTime datatype field for
year.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Duration |
DatatypeFactory.newDuration(boolean isPositive, BigInteger
Obtain a new instance of a
Duration specifying the
Duration as isPositive, years, months, days, hours, minutes, seconds.
|
Duration |
DatatypeFactory.newDurationDayTime(boolean isPositive, BigInteger
Create a
Duration of type
xdt:dayTimeDuration using the specified
day,
hour,
minute and
second as defined in
XQuery 1.0 and XPath 2.0 Data Model, xdt:dayTimeDuration.
|
Duration |
DatatypeFactory.newDurationYearMonth(boolean isPositive, BigInteger
Create a
Duration of type
xdt:yearMonthDuration using the specified
year and
month as defined in
XQuery 1.0 and XPath 2.0 Data Model, xdt:yearMonthDuration.
|
abstract XMLGregorianCalendar |
DatatypeFactory.newXMLGregorianCalendar(BigInteger
Constructor allowing for complete value spaces allowed by W3C XML Schema 1.0 recommendation for xsd:dateTime and related builtin datatypes.
|
abstract void |
XMLGregorianCalendar.setYear(BigInteger
Set low and high order component of XSD
dateTime year field.
|