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

com.dyadicsec.pkcs11.CK_CCM_PARAMS 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.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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy