Loading…

Kryptel/Java

HashFunctionParameters structure

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.