![JAR search and dependency download from the Maven repository](/logo.png)
com.unbound.client.LocateParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unbound-java-provider Show documentation
Show all versions of unbound-java-provider Show documentation
This is a collection of JAVA libraries that implement Unbound cryptographic classes for JAVA provider, PKCS11 wrapper, cryptoki, and advapi
package com.unbound.client;
import javax.security.auth.x500.X500Principal;
import java.security.cert.X509Certificate;
public class LocateParams
{
public long uid = 0;
public String name = null;
public X500Principal subject = null;
public X509Certificate x509 = null;
public long privateKeyUid = 0;
public LocateParams()
{
}
public LocateParams(long uid) { this.uid = uid; }
public LocateParams(String name) { this.name = name; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy