com.dyadicsec.pkcs11.CK_CCM_PARAMS 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.dyadicsec.pkcs11;
import com.dyadicsec.cryptoki.CK;
/**
* Created by saar.peer on 30-Jun-16.
*/
public final class CK_CCM_PARAMS extends CK_MECHANISM
{
public int dataLen;
public byte[] iv;
public byte[] authData;
public int tagSize;
public CK_CCM_PARAMS() {
super(CK.CKM_AES_CCM);
}
public CK_CCM_PARAMS(int dataLen, byte[] iv, byte[] authData, int tagSize)
{
super(CK.CKM_AES_CCM);
this.dataLen = dataLen;
this.iv = iv;
this.authData = authData;
this.tagSize = tagSize;
}
}