CipherParameters structure
Contents
- Introduction to the Library
- Basic support package (com.kryptel.bslx)
- Kryptel API Commons package (com.kryptel)
- Cipher package (com.kryptel.cipher)
- Compressor package (com.kryptel.compressor)
- Exceptions package (com.kryptel.exceptions)
- Hash function package (com.kryptel.hash_function)
- MAC function package (com.kryptel.mac)
- Silver Key engine (com.kryptel.silver_key)
- Kryptel encrypted storage (com.kryptel.storage)
Declaration
package com.kryptel.cipher; public final class CipherParameters { final public int cipherKeySize; final public int cipherBlockSize; final public int cipherRounds; final public byte cipherScheme; final public int cipherMode; // Block chaining mode public CipherParameters(CipherParameters cp) public CipherParameters(int keySize, int blockSize, int rounds, byte scheme, int mode) }
Description
A helper structure grouping all cipher parameters in order to return them in a single function call, for example, IEncryptedStorageInfo.GetCipherParameters.