Home
last modified time | relevance | path

Searched refs:getSafeOutputStream (Results 1 – 2 of 2) sorted by relevance

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DCMSUtils.java383 static OutputStream getSafeOutputStream(OutputStream s) in getSafeOutputStream() method in CMSUtils
391 return s1 == null ? getSafeOutputStream(s2) in getSafeTeeOutputStream()
392 : s2 == null ? getSafeOutputStream(s1) : new TeeOutputStream( in getSafeTeeOutputStream()
DCMSSignedDataGenerator.java155 cOut = CMSUtils.getSafeOutputStream(cOut); in generate()