Loading…

Kryptel/Java

CipherInfo structure

Declaration

package com.kryptel.cipher;

final public class CipherInfo {
    final public int ValidKeySizes[];
    final public int ValidBlockSizes[];
    final public int ValidRounds[];
    final public String Schemes[];

    CipherInfo(int[] KeySizeList, int[] BlockSizeList, int[] RoundsList, String[] sch)

    public String toString()
}

Description

A static structure describing the cipher. Every cipher implementation must define one. See Adding a Cipher for a working example.