Example usage for org.bouncycastle.crypto.params KeyParameter subclass-usage

List of usage examples for org.bouncycastle.crypto.params KeyParameter subclass-usage

Introduction

In this page you can find the example usage for org.bouncycastle.crypto.params KeyParameter subclass-usage.

Usage

From source file net.nharyes.secrete.curve.Curve25519DecryptionParameter.java

public class Curve25519DecryptionParameter extends KeyParameter {

    private byte[] pointR;

    public Curve25519DecryptionParameter(byte[] privateKey, byte[] pointR) {

From source file net.nharyes.secrete.curve.Curve25519EncryptionParameter.java

public class Curve25519EncryptionParameter extends KeyParameter {

    private byte[] scalarR;

    public Curve25519EncryptionParameter(byte[] publicKey, byte[] scalarR) {

From source file us.exultant.ahs.crypto.bc.mod.KeyParamMod.java

/**
 * <p>
 * Purpose is simple: override KeyParameter so that copying the byte array of key material
 * on construction of the KeyParameter is not necessary.
 * </p>
 *