Searched defs:exponent (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/keyvalues/
H A DRSAKeyValue.java64 * @param exponent
66 public RSAKeyValue(Document doc, BigInteger modulus, BigInteger exponent) { argument
72 this.addBigIntegerElement(exponent, Constants._TAG_EXPONENT);
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSAPublicKey.java47 private BigInteger exponent = null; field in class:RSAPublicKey
83 .append("\n public exponent: ").append(getPublicExponent());
89 * Returns the public exponent.
93 if (exponent == null) {
97 exponent = new BigInteger(1, getExponent(publicKeyBlob));
104 return exponent;
183 * Returns the key's public exponent (in big-endian 2's complement format).
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMKeyValue.java64 private DOMCryptoBinary modulus, exponent; field in class:DOMKeyValue
80 exponent = new DOMCryptoBinary(rkey.getPublicExponent());
176 exponent.marshal(exponentElem, dsPrefix, context);
234 exponent = new DOMCryptoBinary(exponentElem.getFirstChild());
236 (modulus.getBigNum(), exponent.getBigNum());
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAKeyFactory.java78 * the exponent to something that can be reasonably computed. We
81 * larger module and exponent values.
123 static void checkRSAProviderKeyLengths(int modulusLen, BigInteger exponent) argument
125 checkKeyLengths(((modulusLen + 7) & ~7), exponent,
130 * Check the length of an RSA key modulus/exponent to make sure it
135 * @param exponent the RSA exponent
143 public static void checkKeyLengths(int modulusLen, BigInteger exponent, argument
163 // If a RSAPublicKey, make sure the exponent isn't too big.
164 if (restrictExpLen && (exponent !
[all...]
/openjdk7/jdk/src/share/classes/java/math/
H A DBigInteger.java1385 * Returns a BigInteger whose value is <tt>(this<sup>exponent</sup>)</tt>.
1386 * Note that {@code exponent} is an integer rather than a BigInteger.
1388 * @param exponent exponent to which this BigInteger is to be raised.
1389 * @return <tt>this<sup>exponent</sup></tt>
1390 * @throws ArithmeticException {@code exponent} is negative. (This would
1393 public BigInteger pow(int exponent) { argument
1394 if (exponent < 0)
1395 throw new ArithmeticException("Negative exponent");
1397 return (exponent
1574 modPow(BigInteger exponent, BigInteger m) argument
1969 modPow2(BigInteger exponent, int p) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DFormatter.java340 * a significand and an exponent
838 * exponent (as appropriate for the data type), the following transformation
1157 * <p> If <i>m</i> is positive-zero or negative-zero, then the exponent
1172 * part of <i>a</i>, followed by the exponent symbol {@code 'e'}
1173 * (<tt>'&#92;u0065'</tt>), followed by the sign of the exponent, followed
1195 * <td> The upper-case variant of {@code 'e'}. The exponent symbol
1286 * exponent fields. The significand is represented by the characters
1288 * of the significand as a fraction. The exponent is represented by
1290 * unbiased exponent as if produced by invoking {@link
1291 * Integer#toString(int) Integer.toString} on the exponent valu
3365 private char[] exponent(char[] v, int len) { method in class:Formatter.FormatSpecifier
3691 public char[] exponent() { method in class:Formatter.FormatSpecifier.BigDecimalLayout
[all...]
/openjdk7/jdk/src/windows/native/sun/security/mscapi/
H A Dsecurity.cpp1526 jbyteArray exponent = NULL; local
1553 exponent = env->NewByteArray(len);
1554 env->SetByteArrayRegion(exponent, 0, len, exponentBytes);
1565 return exponent;
1763 // Prime exponent p
1768 // Prime exponent q
1778 // Private exponent
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c1125 * exponent.
1133 /* Handle negative exponent with a reciprocal at the end because
1192 int exp_b10; /* A base 10 exponent */
1195 /* First extract a base 10 exponent of the number,
1204 (void)frexp(fp, &exp_b10); /* exponent to base 2 */
1206 exp_b10 = (exp_b10 * 77) >> 8; /* <= exponent to base 10 */
1224 * range [.1,1) and exp_b10 is both the exponent and the digit
1241 char exponent[10]; local
1255 * inserting a '.' before a digit if the exponent is 0.
1309 * exponent bu
[all...]

Completed in 66 milliseconds