
com.lambdaworks.jni.LibraryLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scrypt Show documentation
Show all versions of scrypt Show documentation
Java implementation of scrypt
// Copyright (C) 2011 - Will Glozer. All rights reserved.
package com.lambdaworks.jni;
/**
* A {@code LibraryLoader} attempts to load the appropriate native library
* for the current platform.
*
* @author Will Glozer
*/
public interface LibraryLoader {
/**
* Load a native library, and optionally verify any signatures.
*
* @param name Name of the library to load.
* @param verify Verify signatures if signed.
*
* @return true if the library was successfully loaded.
*/
boolean load(String name, boolean verify);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy