Searched refs:engineUpdate (Results 1 - 25 of 56) sorted by relevance

123

/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...]
H A DSignature.java681 engineUpdate(b);
715 engineUpdate(data, off, len);
743 engineUpdate(data);
1142 protected void engineUpdate(byte b) throws SignatureException { method in class:Signature.Delegate
1144 sigSpi.engineUpdate(b);
1147 protected void engineUpdate(byte[] b, int off, int len) method in class:Signature.Delegate
1150 sigSpi.engineUpdate(b, off, len);
1153 protected void engineUpdate(ByteBuffer data) { method in class:Signature.Delegate
1155 sigSpi.engineUpdate(data);
1238 protected void engineUpdate(byt method in class:Signature.CipherAdapter
1242 protected void engineUpdate(byte[] b, int off, int len) method in class:Signature.CipherAdapter
[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/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/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/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 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 DSslMacCore.java211 protected void engineUpdate(byte input) { method in class:SslMacCore.SslMacMD5
214 protected void engineUpdate(byte input[], int offset, int len) { method in class:SslMacCore.SslMacMD5
217 protected void engineUpdate(ByteBuffer input) { method in class:SslMacCore.SslMacMD5
244 protected void engineUpdate(byte input) { method in class:SslMacCore.SslMacSHA1
247 protected void engineUpdate(byte input[], int offset, int len) { method in class:SslMacCore.SslMacSHA1
250 protected void engineUpdate(ByteBuffer input) { method in class:SslMacCore.SslMacSHA1
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 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 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 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 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
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Mac.java226 protected void engineUpdate(byte input) { method in class:P11Mac
231 engineUpdate(oneByte, 0, 1);
235 protected void engineUpdate(byte[] b, int ofs, int len) { method in class:P11Mac
246 protected void engineUpdate(ByteBuffer byteBuffer) { method in class:P11Mac
254 super.engineUpdate(byteBuffer);
H A DP11Digest.java212 protected void engineUpdate(byte in) { method in class:P11Digest
217 engineUpdate(oneByte, 0, 1);
221 protected void engineUpdate(byte[] in, int ofs, int len) { method in class:P11Digest
269 protected void engineUpdate(ByteBuffer byteBuffer) { method in class:P11Digest
276 super.engineUpdate(byteBuffer);
/openjdk7/jdk/test/javax/crypto/Cipher/
H A DByteBuffersNull.java27 * @summary Check NullPointerException for cipherSpi.engineUpdate(x, null)
61 c.engineUpdate(bb, null);
164 public byte[] engineUpdate(byte[] input, int offset, int len) { method in class:ByteBuffersNull.CipherSpiImpl
168 public int engineUpdate(byte[] input, int inputOffset, int inputLen, method in class:ByteBuffersNull.CipherSpiImpl
207 public int engineUpdate(ByteBuffer input, ByteBuffer output) method in class:ByteBuffersNull.CipherSpiImpl
209 return super.engineUpdate(input, output);
/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/windows/classes/sun/security/mscapi/
H A DRSASignature.java127 protected void engineUpdate(byte b) throws SignatureException { method in class:RSASignature.Raw
137 protected void engineUpdate(byte[] b, int off, int len) method in class:RSASignature.Raw
149 protected void engineUpdate(ByteBuffer byteBuffer) { method in class:RSASignature.Raw
333 protected void engineUpdate(byte b) throws SignatureException method in class:RSASignature
350 protected void engineUpdate(byte[] b, int off, int len) method in class:RSASignature
363 protected void engineUpdate(ByteBuffer input) method in class:RSASignature
/openjdk7/jdk/test/java/security/Provider/
H A DGetInstance.java179 public void engineUpdate(byte input) {} method in class:GetInstance.FooDigest
180 public void engineUpdate(byte[] b, int ofs, int len) {} method in class:GetInstance.FooDigest
194 protected void engineUpdate(byte b) throws SignatureException { } method in class:GetInstance.BaseSignatureSpi
195 protected void engineUpdate(byte[] b, int off, int len) throws SignatureException { } method in class:GetInstance.BaseSignatureSpi
217 protected void engineUpdate(byte b) throws SignatureException { } method in class:GetInstance.BaseSignature
218 protected void engineUpdate(byte[] b, int off, int len) throws SignatureException { } method in class:GetInstance.BaseSignature
/openjdk7/jdk/src/share/classes/sun/security/ec/
H A DECDSASignature.java106 protected void engineUpdate(byte b) throws SignatureException { method in class:ECDSASignature.Raw
116 protected void engineUpdate(byte[] b, int off, int len) method in class:ECDSASignature.Raw
128 protected void engineUpdate(ByteBuffer byteBuffer) { method in class:ECDSASignature.Raw
243 protected void engineUpdate(byte b) throws SignatureException { method in class:ECDSASignature
250 protected void engineUpdate(byte[] b, int off, int len) method in class:ECDSASignature
258 protected void engineUpdate(ByteBuffer byteBuffer) { method in class:ECDSASignature

Completed in 127 milliseconds

123