List of usage examples for org.bouncycastle.crypto.io SignerOutputStream SignerOutputStream
public SignerOutputStream(Signer Signer)
From source file:org.xwiki.crypto.signer.internal.BcSigner.java
License:Open Source License
@Override public OutputStream getOutputStream() { signer.reset(); return new SignerOutputStream(signer); }