Package org.syncany.crypto

Examples of org.syncany.crypto.MultiCipherInputStream


    public InputStream createInputStream(InputStream in) throws IOException {
    if (cipherSession == null) {
      throw new RuntimeException("Cipher session is not initialized. Call init() before!");
    }
   
      return new MultiCipherInputStream(in, cipherSession);     
    }   
View Full Code Here

TOP

Related Classes of org.syncany.crypto.MultiCipherInputStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.