List of usage examples for org.bouncycastle.util.io Streams readAllLimited
public static byte[] readAllLimited(InputStream inStr, int limit) throws IOException
From source file:org.votingsystem.signature.util.CMSUtils.java
License:Open Source License
public static byte[] streamToByteArray(InputStream in, int limit) throws IOException { return Streams.readAllLimited(in, limit); }