All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.unbound.client.LocateParams Maven / Gradle / Ivy

Go to download

This is a collection of JAVA libraries that implement Unbound cryptographic classes for JAVA provider, PKCS11 wrapper, cryptoki, and advapi

There is a newer version: 42761
Show newest version
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