Package org.lealone.security

Examples of org.lealone.security.SecureFileStore


    public static FileStore open(DataHandler handler, String name, String mode, String cipher, byte[] key, int keyIterations) {
        FileStore store;
        if (cipher == null) {
            store = new FileStore(handler, name, mode);
        } else {
            store = new SecureFileStore(handler, name, mode, cipher, key, keyIterations);
        }
        return store;
    }
View Full Code Here

TOP

Related Classes of org.lealone.security.SecureFileStore

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.