org.bouncycastle.jce.spec.RepeatedSecretKeySpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.bcprov-jdk15on
Show all versions of org.apache.servicemix.bundles.bcprov-jdk15on
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package org.bouncycastle.jce.spec;
/**
* A simple object to indicate that a symmetric cipher should reuse the
* last key provided.
* @deprecated use super class org.bouncycastle.jcajce.spec.RepeatedSecretKeySpec
*/
public class RepeatedSecretKeySpec
extends org.bouncycastle.jcajce.spec.RepeatedSecretKeySpec
{
private String algorithm;
public RepeatedSecretKeySpec(String algorithm)
{
super(algorithm);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy