org.bouncycastle.crypto.params.DSAPrivateKeyParameters.java Source code

Java tutorial

Introduction

Here is the source code for org.bouncycastle.crypto.params.DSAPrivateKeyParameters.java

Source

package org.bouncycastle.crypto.params;

import java.math.BigInteger;

public class DSAPrivateKeyParameters extends DSAKeyParameters {
    private BigInteger x;

    public DSAPrivateKeyParameters(BigInteger x, DSAParameters params) {
        super(true, params);

        this.x = x;
    }

    public BigInteger getX() {
        return x;
    }
}