Searched defs:engineUpdate (Results 1 - 25 of 46) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/security/
H A DMessageDigestSpi.java53 // for re-use in engineUpdate(ByteBuffer input)
80 protected abstract void engineUpdate(byte input); method in class:MessageDigestSpi
93 protected abstract void engineUpdate(byte[] input, int offset, int len); method in class:MessageDigestSpi
105 protected void engineUpdate(ByteBuffer input) { method in class:MessageDigestSpi
114 engineUpdate(b, ofs + pos, lim - pos);
125 engineUpdate(tempArray, 0, chunk);
H A DSignatureSpi.java115 protected abstract void engineUpdate(byte b) throws SignatureException; method in class:SignatureSpi
128 protected abstract void engineUpdate(byte[] b, int off, int len) method in class:SignatureSpi
141 protected void engineUpdate(ByteBuffer input) { method in class:SignatureSpi
151 engineUpdate(b, ofs + pos, lim - pos);
159 engineUpdate(b, 0, chunk);
H A DMessageDigest.java291 engineUpdate(input);
313 engineUpdate(input, offset, len);
323 engineUpdate(input, 0, input.length);
341 engineUpdate(input);
563 protected void engineUpdate(byte input) { method in class:MessageDigest.Delegate
564 digestSpi.engineUpdate(input);
567 protected void engineUpdate(byte[] input, int offset, int len) { method in class:MessageDigest.Delegate
568 digestSpi.engineUpdate(input, offset, len);
571 protected void engineUpdate(ByteBuffer input) { method in class:MessageDigest.Delegate
572 digestSpi.engineUpdate(inpu
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DMacSpi.java77 protected abstract void engineUpdate(byte input); method in class:MacSpi
87 protected abstract void engineUpdate(byte[] input, int offset, int len); method in class:MacSpi
101 protected void engineUpdate(ByteBuffer input) { method in class:MacSpi
110 engineUpdate(b, ofs + pos, lim - pos);
118 engineUpdate(b, 0, chunk);
H A DNullCipherSpi.java79 protected byte[] engineUpdate(byte[] input, int inputOffset, method in class:NullCipherSpi
87 protected int engineUpdate(byte[] input, int inputOffset, method in class:NullCipherSpi
98 return engineUpdate(input, inputOffset, inputLen);
105 return engineUpdate(input, inputOffset, inputLen,
H A DCipherSpi.java479 protected abstract byte[] engineUpdate(byte[] input, int inputOffset, method in class:CipherSpi
508 protected abstract int engineUpdate(byte[] input, int inputOffset, method in class:CipherSpi
543 protected int engineUpdate(ByteBuffer input, ByteBuffer output) method in class:CipherSpi
548 // never thrown for engineUpdate()
551 // never thrown for engineUpdate()
733 * engineUpdate() and engineDoFinal().
765 n = engineUpdate(inArray, inOfs, inLen, outArray, outOfs);
783 n = engineUpdate(inArray, 0, chunk, outArray, outOfs);
816 n = engineUpdate(inArray, inOfs, chunk, outArray, 0);
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DHmacMD5.java83 protected void engineUpdate(byte input) { method in class:HmacMD5
95 protected void engineUpdate(byte input[], int offset, int len) { method in class:HmacMD5
99 protected void engineUpdate(ByteBuffer input) { method in class:HmacMD5
H A DHmacPKCS12PBESHA1.java153 protected void engineUpdate(byte input) { method in class:HmacPKCS12PBESHA1
165 protected void engineUpdate(byte input[], int offset, int len) { method in class:HmacPKCS12PBESHA1
169 protected void engineUpdate(ByteBuffer input) { method in class:HmacPKCS12PBESHA1
H A DHmacSHA1.java83 protected void engineUpdate(byte input) { method in class:HmacSHA1
95 protected void engineUpdate(byte input[], int offset, int len) { method in class:HmacSHA1
99 protected void engineUpdate(ByteBuffer input) { method in class:HmacSHA1
H A DAESCipher.java246 protected byte[] engineUpdate(byte[] input, int inputOffset, method in class:AESCipher
274 protected int engineUpdate(byte[] input, int inputOffset, int inputLen, method in class:AESCipher
H A DAESWrapCipher.java254 protected byte[] engineUpdate(byte[] in, int inOffset, int inLen) { method in class:AESWrapCipher
276 protected int engineUpdate(byte[] in, int inOffset, int inLen, method in class:AESWrapCipher
H A DARCFOURCipher.java209 protected byte[] engineUpdate(byte[] in, int inOfs, int inLen) { method in class:ARCFOURCipher
216 protected int engineUpdate(byte[] in, int inOfs, int inLen, method in class:ARCFOURCipher
227 byte[] out = engineUpdate(in, inOfs, inLen);
235 int outLen = engineUpdate(in, inOfs, inLen, out, outOfs);
H A DBlowfishCipher.java251 protected byte[] engineUpdate(byte[] input, int inputOffset, method in class:BlowfishCipher
279 protected int engineUpdate(byte[] input, int inputOffset, int inputLen, method in class:BlowfishCipher
H A DDESCipher.java246 protected byte[] engineUpdate(byte[] input, int inputOffset, method in class:DESCipher
274 protected int engineUpdate(byte[] input, int inputOffset, int inputLen, method in class:DESCipher
H A DDESedeCipher.java226 protected byte[] engineUpdate(byte[] input, int inputOffset, method in class:DESedeCipher
254 protected int engineUpdate(byte[] input, int inputOffset, int inputLen, method in class:DESedeCipher
H A DHmacCore.java256 protected void engineUpdate(byte input) { method in class:HmacCore.HmacSHA256
259 protected void engineUpdate(byte input[], int offset, int len) { method in class:HmacCore.HmacSHA256
262 protected void engineUpdate(ByteBuffer input) { method in class:HmacCore.HmacSHA256
292 protected void engineUpdate(byte input) { method in class:HmacCore.HmacSHA384
295 protected void engineUpdate(byte input[], int offset, int len) { method in class:HmacCore.HmacSHA384
298 protected void engineUpdate(ByteBuffer input) { method in class:HmacCore.HmacSHA384
328 protected void engineUpdate(byte input) { method in class:HmacCore.HmacSHA512
331 protected void engineUpdate(byte input[], int offset, int len) { method in class:HmacCore.HmacSHA512
334 protected void engineUpdate(ByteBuffer input) { method in class:HmacCore.HmacSHA512
H A DPBEWithMD5AndDESCipher.java248 protected byte[] engineUpdate(byte[] input, int inputOffset, int inputLen) method in class:PBEWithMD5AndDESCipher
276 protected int engineUpdate(byte[] input, int inputOffset, int inputLen, method in class:PBEWithMD5AndDESCipher
H A DPBEWithMD5AndTripleDESCipher.java258 protected byte[] engineUpdate(byte[] input, int inputOffset, int inputLen) method in class:PBEWithMD5AndTripleDESCipher
286 protected int engineUpdate(byte[] input, int inputOffset, int inputLen, method in class:PBEWithMD5AndTripleDESCipher
H A DRC2Cipher.java114 protected byte[] engineUpdate(byte[] in, int inOfs, int inLen) { method in class:RC2Cipher
118 protected int engineUpdate(byte[] in, int inOfs, int inLen, method in class:RC2Cipher
/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/provider/
H A DDigestBase.java104 protected final void engineUpdate(byte b) { method in class:DigestBase
109 engineUpdate(oneByte, 0, 1);
113 protected final void engineUpdate(byte[] b, int ofs, int len) { method in class:DigestBase
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/algorithms/
H A DSignatureAlgorithmSpi.java66 protected abstract void engineUpdate(byte[] input) method in class:SignatureAlgorithmSpi
76 protected abstract void engineUpdate(byte input) method in class:SignatureAlgorithmSpi
88 protected abstract void engineUpdate(byte buf[], int offset, int len) method in class:SignatureAlgorithmSpi
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/algorithms/implementations/
H A DSignatureBaseRSA.java190 protected void engineUpdate(byte[] input) throws XMLSignatureException { method in class:SignatureBaseRSA
199 protected void engineUpdate(byte input) throws XMLSignatureException { method in class:SignatureBaseRSA
208 protected void engineUpdate(byte buf[], int offset, int len) method in class:SignatureBaseRSA
H A DSignatureDSA.java224 protected void engineUpdate(byte[] input) throws XMLSignatureException { method in class:SignatureDSA
235 protected void engineUpdate(byte input) throws XMLSignatureException { method in class:SignatureDSA
246 protected void engineUpdate(byte buf[], int offset, int len) method in class:SignatureDSA
H A DSignatureECDSA.java307 protected void engineUpdate(byte[] input) throws XMLSignatureException { method in class:SignatureECDSA
317 protected void engineUpdate(byte input) throws XMLSignatureException { method in class:SignatureECDSA
327 protected void engineUpdate(byte buf[], int offset, int len) method in class:SignatureECDSA

Completed in 59 milliseconds

12