Example usage for org.bouncycastle.crypto.io SignerOutputStream SignerOutputStream

List of usage examples for org.bouncycastle.crypto.io SignerOutputStream SignerOutputStream

Introduction

In this page you can find the example usage for org.bouncycastle.crypto.io SignerOutputStream SignerOutputStream.

Prototype

public SignerOutputStream(Signer Signer) 

Source Link

Usage

From source file:org.xwiki.crypto.signer.internal.BcSigner.java

License:Open Source License

@Override
public OutputStream getOutputStream() {
    signer.reset();
    return new SignerOutputStream(signer);
}