Example usage for org.bouncycastle.crypto CipherParameters interface-usage

List of usage examples for org.bouncycastle.crypto CipherParameters interface-usage

Introduction

In this page you can find the example usage for org.bouncycastle.crypto CipherParameters interface-usage.

Usage

From source file com.DSC.crypto.ECKeyParam.java

/**
 * A class which acts as a wrapper for the Elliptic Curve specifications
 * (ECParamSpec) and domain parameters (ECDomainParameters) making it
 * easier to simply define one object that can be used to specify the
 * parameters of the Elliptic Curve Asymmetric keys.
 */

From source file org.jitsi.bccontrib.params.ParametersForSkein.java

public class ParametersForSkein implements CipherParameters {

    public final static int Skein256 = 256;
    public final static int Skein512 = 512;
    public final static int Skein1024 = 1024;

From source file org.jitsi.bccontrib.params.ParametersForThreefish.java

public class ParametersForThreefish implements CipherParameters {
    public final static int Threefish256 = 256;
    public final static int Threefish512 = 512;
    public final static int Threefish1024 = 1024;

    private int stateSize;