iaik.pkcs.pkcs11.parameters.GCMParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sunpkcs11-wrapper Show documentation
Show all versions of sunpkcs11-wrapper Show documentation
PKCS#11 wrapper based on sunpkcs11
The newest version!
/*
*
* Copyright (c) 2019 Lijun Liao
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package iaik.pkcs.pkcs11.parameters;
import iaik.pkcs.pkcs11.Util;
import iaik.pkcs.pkcs11.wrapper.Functions;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
/**
* CK_CCM_PARAMS
*
* @author Lijun Liao
* @since 1.4.5
*
*/
public class GCMParameters implements Parameters {
public static final String CLASS_CK_PARAMS =
"sun.security.pkcs11.wrapper.CK_GCM_PARAMS";
private static final Constructor> constructor;
private final byte[] iv;
private final byte[] aad;
private final int tagLen;
static {
constructor = Util.getConstructor(CLASS_CK_PARAMS,
int.class, byte[].class, byte[].class);
}
public GCMParameters(int tagLen, byte[] iv, byte[] aad) {
if (constructor == null) {
throw new IllegalStateException(
CLASS_CK_PARAMS + " is not available in the JDK");
}
this.iv = iv;
this.aad = aad;
this.tagLen = tagLen;
}
public String toString() {
return Util.concatObjectsCap(100,
"\n iv: ", Functions.toHexString(iv),
"\n aad: ", Functions.toHexString(aad),
"\n tagLen: ", tagLen);
}
@Override
public int hashCode() {
return Util.hashCode(iv) ^ Util.hashCode(aad) ^ tagLen;
}
@Override
public Object getPKCS11ParamsObject() {
try {
return constructor.newInstance(tagLen << 3, iv, aad);
} catch (SecurityException | InstantiationException | IllegalAccessException
| IllegalArgumentException | InvocationTargetException ex) {
throw new IllegalStateException(
"Could not create new instance of " + CLASS_CK_PARAMS, ex);
}
}
}