Searched refs:engineDoFinal (Results 1 - 25 of 29) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/crypto/
H A DNullCipherSpi.java95 protected byte[] engineDoFinal(byte[] input, int inputOffset, method in class:NullCipherSpi
101 protected int engineDoFinal(byte[] input, int inputOffset, method in class:NullCipherSpi
H A DCipherSpi.java600 protected abstract byte[] engineDoFinal(byte[] input, int inputOffset, method in class:CipherSpi
657 protected abstract int engineDoFinal(byte[] input, int inputOffset, method in class:CipherSpi
718 protected int engineDoFinal(ByteBuffer input, ByteBuffer output) method in class:CipherSpi
733 * engineUpdate() and engineDoFinal().
767 n = engineDoFinal(inArray, inOfs, inLen, outArray, outOfs);
785 n = engineDoFinal(inArray, 0, chunk, outArray, outOfs);
818 n = engineDoFinal(inArray, inOfs, chunk, outArray, 0);
H A DMacSpi.java130 protected abstract byte[] engineDoFinal(); method in class:MacSpi
H A DCipher.java1970 return spi.engineDoFinal(null, 0, 0);
2034 return spi.engineDoFinal(null, 0, 0, output, outputOffset);
2087 return spi.engineDoFinal(input, 0, input.length);
2145 return spi.engineDoFinal(input, inputOffset, inputLen);
2219 return spi.engineDoFinal(input, inputOffset, inputLen,
2299 return spi.engineDoFinal(input, inputOffset, inputLen,
2382 return spi.engineDoFinal(input, output);
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DARCFOURCipher.java226 protected byte[] engineDoFinal(byte[] in, int inOfs, int inLen) { method in class:ARCFOURCipher
233 protected int engineDoFinal(byte[] in, int inOfs, int inLen, method in class:ARCFOURCipher
247 return engineDoFinal(encoded, 0, encoded.length);
253 byte[] encoded = engineDoFinal(wrappedKey, 0, wrappedKey.length);
H A DAESCipher.java311 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen) method in class:AESCipher
352 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, method in class:AESCipher
H A DBlowfishCipher.java316 protected byte[] engineDoFinal(byte[] input, int inputOffset, method in class:BlowfishCipher
358 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, method in class:BlowfishCipher
H A DDESCipher.java311 protected byte[] engineDoFinal(byte[] input, int inputOffset, method in class:DESCipher
353 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, method in class:DESCipher
H A DDESedeCipher.java291 protected byte[] engineDoFinal(byte[] input, int inputOffset, method in class:DESedeCipher
333 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, method in class:DESedeCipher
H A DPBEWithMD5AndDESCipher.java313 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen) method in class:PBEWithMD5AndDESCipher
354 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, method in class:PBEWithMD5AndDESCipher
H A DPBEWithMD5AndTripleDESCipher.java323 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen) method in class:PBEWithMD5AndTripleDESCipher
364 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, method in class:PBEWithMD5AndTripleDESCipher
H A DRC2Cipher.java123 protected byte[] engineDoFinal(byte[] in, int inOfs, int inLen) method in class:RC2Cipher
128 protected int engineDoFinal(byte[] in, int inOfs, int inLen, method in class:RC2Cipher
H A DHmacMD5.java109 protected byte[] engineDoFinal() { method in class:HmacMD5
H A DHmacSHA1.java109 protected byte[] engineDoFinal() { method in class:HmacSHA1
H A DCipherWithWrappingSpi.java90 result = engineDoFinal(encodedKey, 0, encodedKey.length);
128 encodedKey = engineDoFinal(wrappedKey, 0,
H A DSslMacCore.java220 protected byte[] engineDoFinal() { method in class:SslMacCore.SslMacMD5
253 protected byte[] engineDoFinal() { method in class:SslMacCore.SslMacSHA1
H A DHmacCore.java265 protected byte[] engineDoFinal() { method in class:HmacCore.HmacSHA256
301 protected byte[] engineDoFinal() { method in class:HmacCore.HmacSHA384
337 protected byte[] engineDoFinal() { method in class:HmacCore.HmacSHA512
H A DHmacPKCS12PBESHA1.java179 protected byte[] engineDoFinal() { method in class:HmacPKCS12PBESHA1
H A DAESWrapCipher.java297 protected byte[] engineDoFinal(byte[] input, int inputOffset, method in class:AESWrapCipher
321 protected int engineDoFinal(byte[] in, int inOffset, int inLen, method in class:AESWrapCipher
H A DPKCS12PBECipherCore.java385 protected byte[] engineDoFinal(byte[] in, int inOff, int inLen) method in class:PKCS12PBECipherCore.PBEWithSHA1AndDESede
389 protected int engineDoFinal(byte[] in, int inOff, int inLen, method in class:PKCS12PBECipherCore.PBEWithSHA1AndDESede
460 protected byte[] engineDoFinal(byte[] in, int inOff, int inLen) method in class:PKCS12PBECipherCore.PBEWithSHA1AndRC2_40
464 protected int engineDoFinal(byte[] in, int inOff, int inLen, method in class:PKCS12PBECipherCore.PBEWithSHA1AndRC2_40
H A DDESedeWrapCipher.java351 protected byte[] engineDoFinal(byte[] in, int inOffset, int inLen) method in class:DESedeWrapCipher
374 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, method in class:DESedeWrapCipher
H A DKeyProtector.java131 byte[] encrKey = cipher.engineDoFinal(plain, 0, plain.length);
185 plain=cipher.engineDoFinal(encrInfo.getEncryptedData(), 0,
/openjdk7/jdk/test/javax/crypto/Cipher/
H A DByteBuffersNull.java174 public byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen) method in class:ByteBuffersNull.CipherSpiImpl
179 public int engineDoFinal(byte[] input, int inputOffset, int inputLen, method in class:ByteBuffersNull.CipherSpiImpl
201 public int engineDoFinal(ByteBuffer input, ByteBuffer output) method in class:ByteBuffersNull.CipherSpiImpl
204 return super.engineDoFinal(input, output);
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Cipher.java507 protected byte[] engineDoFinal(byte[] in, int inOfs, int inLen) method in class:P11Cipher
511 int n = engineDoFinal(in, inOfs, inLen, out, 0);
520 protected int engineDoFinal(byte[] in, int inOfs, int inLen, byte[] out, method in class:P11Cipher
534 protected int engineDoFinal(ByteBuffer inBuffer, ByteBuffer outBuffer) method in class:P11Cipher
H A DP11Mac.java212 protected byte[] engineDoFinal() { method in class:P11Mac

Completed in 141 milliseconds

12