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
/** * 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); } }