Searched refs:DigestException (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/
H A DDigestException.java33 public class DigestException extends GeneralSecurityException { class in inherits:GeneralSecurityException
38 * Constructs a DigestException with no detail message. (A
42 public DigestException() { method in class:DigestException
47 * Constructs a DigestException with the specified detail
53 public DigestException(String msg) { method in class:DigestException
58 * Creates a <code>DigestException</code> with the specified
68 public DigestException(String message, Throwable cause) { method in class:DigestException
73 * Creates a <code>DigestException</code> with the specified cause
83 public DigestException(Throwable cause) { method in class:DigestException
H A DMessageDigestSpi.java163 * than the actual digest length, the method will throw a DigestException.
169 * @exception DigestException if an error occurs.
174 throws DigestException {
178 throw new DigestException("partial digests not returned");
180 throw new DigestException("insufficient space in the output "
H A DMessageDigest.java69 * throw new DigestException("couldn't make digest of partial content");
370 * @exception DigestException if an error occurs.
372 public int digest(byte[] buf, int offset, int len) throws DigestException {
580 throws DigestException {
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DDigestBase.java29 import java.security.DigestException;
166 } catch (DigestException e) {
175 throws DigestException {
177 throw new DigestException("Length must be at least "
181 throw new DigestException("Buffer too short to store digest");
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DTlsPrfGenerator.java167 throws NoSuchAlgorithmException, DigestException {
179 throws DigestException {
204 throw new DigestException("Unexpected block size.");
216 DigestException {
224 MessageDigest sha) throws DigestException {
269 byte[] output, byte[] pad1, byte[] pad2) throws DigestException {
H A DTlsMasterSecretGenerator.java137 } catch (DigestException e) {
H A DSslMacCore.java181 } catch (DigestException e) {
H A DHmacCore.java216 } catch (DigestException e) {
/openjdk7/jdk/test/java/security/Security/signedfirst/
H A Dexp.jarMETA-INF/MANIFEST.MF META-INF/MYKEY.SF META-INF/MYKEY.RSA META ...
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A Dcrc32.java34 import java.security.DigestException;
77 protected int engineDigest(byte[] buf, int offset, int len) throws DigestException {
81 throw new DigestException("partial digests not returned");
84 throw new DigestException("insufficient space in the output " +
90 throw new DigestException("partial digests not returned");
93 throw new DigestException("insufficient space in the output " +
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Digest.java174 } catch (DigestException e) {
181 throws DigestException {
183 throw new DigestException("Length must be at least " + digestLength);
/openjdk7/jdk/test/java/security/Exceptions/
H A DChainingConstructors.java50 DigestException de = new DigestException(cause);
54 de = new DigestException(MSG, cause);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DRSASignature.java158 } catch (DigestException e) {
H A DHandshakeHash.java421 throws DigestException {
H A DHandshakeMessage.java1966 } catch (DigestException e) {
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/algorithms/
H A DMessageDigestAlgorithm.java178 * @throws java.security.DigestException
181 throws java.security.DigestException {
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAPadding.java467 } catch (DigestException e) {

Completed in 64 milliseconds