HashFunctionParameters 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)
- Key-related functions (com.kryptel.key)
- Silver Key engine (com.kryptel.silver_key)
- Kryptel encrypted storage (com.kryptel.storage)
Declaration
package com.kryptel.hash_function; public class HashFunctionParameters { final public int hashSize; final public int hashPasses; final public byte hashScheme; public HashFunctionParameters(HashFunctionParameters hfp) public HashFunctionParameters(int size, int passes, byte scheme) }
Description
A helper structure grouping all hash function parameters in order to return them in a single function call, for example, IEncryptedStorageInfo.GetHashFunctionParameters.