com.fitbur.bouncycastle.operator.bc.BcAESSymmetricKeyWrapper 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 BcAESSymmetricKeyWrapper
extends BcSymmetricKeyWrapper
{
public BcAESSymmetricKeyWrapper(KeyParameter wrappingKey)
{
super(AESUtil.com.fitburtermineKeyEncAlg(wrappingKey), new AESWrapEngine(), wrappingKey);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy