com.fitbur.bouncycastle.operator.bc.BcAESSymmetricKeyUnwrapper Maven / Gradle / Ivy
package com.fitbur.bouncycastle.operator.bc;
import com.fitbur.bouncycastle.crypto.engines.AESWrapEngine;
import com.fitbur.bouncycastle.crypto.params.KeyParameter;
public class BcAESSymmetricKeyUnwrapper
extends BcSymmetricKeyUnwrapper
{
public BcAESSymmetricKeyUnwrapper(KeyParameter wrappingKey)
{
super(AESUtil.com.fitburtermineKeyEncAlg(wrappingKey), new AESWrapEngine(), wrappingKey);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy