Searched refs:CipherCore (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DRC2Cipher.java36 * The real code is in CipherCore and RC2Crypt.
43 // internal CipherCore & RC2Crypt objects which do the real work.
44 private final CipherCore core;
49 core = new CipherCore(embeddedCipher, 8);
135 byte[] keyBytes = CipherCore.getKeyBytes(key);
H A DAESCipher.java52 * internal CipherCore object which does the real work.
54 private CipherCore core = null;
61 core = new CipherCore(new AESCrypt(), AESConstants.AES_BLOCK_SIZE);
H A DBlowfishCipher.java56 * internal CipherCore object which does the real work.
58 private CipherCore core = null;
65 core = new CipherCore(new BlowfishCrypt(),
H A DDESCipher.java52 * internal CipherCore object which does the real work.
54 private CipherCore core = null;
61 core = new CipherCore(new DESCrypt(), DESConstants.DES_BLOCK_SIZE);
H A DDESedeCipher.java49 * internal CipherCore object which does the real work.
51 private CipherCore core = null;
58 core = new CipherCore(new DESedeCrypt(), DESConstants.DES_BLOCK_SIZE);
H A DPBECipherCore.java46 private CipherCore cipher;
62 cipher = new CipherCore(new DESCrypt(),
66 cipher = new CipherCore(new DESedeCrypt(),
H A DCipherCore.java54 final class CipherCore { class
126 * Creates an instance of CipherCore with default ECB mode and
129 CipherCore(SymmetricCipher impl, int blkSize) { method in class:CipherCore
H A DPKCS12PBECipherCore.java47 private CipherCore cipher;
164 cipher = new CipherCore(symmCipher, blockSize);

Completed in 41 milliseconds