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

/openjdk10/jdk/src/java.base/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 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 DBlowfishCipher.java56 * internal CipherCore object which does the real work.
58 private CipherCore core = null;
65 core = new CipherCore(new BlowfishCrypt(),
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 DAESCipher.java165 * internal CipherCore object which does the real work.
167 private CipherCore core = null;
185 core = new CipherCore(new AESCrypt(), AESConstants.AES_BLOCK_SIZE);
591 if (core.getMode() == CipherCore.GCM_MODE && updateCalled) {
626 if (core.getMode() == CipherCore.GCM_MODE && updateCalled) {
H A DPBECipherCore.java45 private CipherCore cipher;
61 cipher = new CipherCore(new DESCrypt(),
65 cipher = new CipherCore(new DESedeCrypt(),
H A DPBES1Core.java45 private CipherCore cipher;
61 cipher = new CipherCore(new DESCrypt(),
65 cipher = new CipherCore(new DESedeCrypt(),
H A DPBES2Core.java50 private final CipherCore cipher;
73 cipher = new CipherCore(new AESCrypt(), blkSize);
H A DCipherCore.java55 final class CipherCore { class
137 * NOTE: this key+iv check have to be done inside CipherCore class
138 * since CipherCore class buffers potential tag bytes in GCM mode
147 * Creates an instance of CipherCore with default ECB mode and
150 CipherCore(SymmetricCipher impl, int blkSize) { method in class:CipherCore
H A DPKCS12PBECipherCore.java48 // TBD: replace CipherCore with a CipherSpi object to simplify maintenance
50 private CipherCore cipher;
187 cipher = new CipherCore(symmCipher, blockSize);

Completed in 159 milliseconds