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

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

Introduction

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

Prototype

public SignerInputStream(InputStream stream, Signer signer) 

Source Link

Usage

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

License:Open Source License

@Override
public FilterInputStream getInputStream(InputStream is) {
    signer.reset();
    return new SignerInputStream(is, signer);
}