28 lines
576 B
Java
28 lines
576 B
Java
|
package org.bouncycastle.jcajce.spec;
|
||
|
|
||
|
import javax.crypto.SecretKey;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class RepeatedSecretKeySpec implements SecretKey {
|
||
|
private String algorithm;
|
||
|
|
||
|
@Override // java.security.Key
|
||
|
public byte[] getEncoded() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
@Override // java.security.Key
|
||
|
public String getFormat() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
@Override // java.security.Key
|
||
|
public String getAlgorithm() {
|
||
|
return this.algorithm;
|
||
|
}
|
||
|
|
||
|
public RepeatedSecretKeySpec(String str) {
|
||
|
this.algorithm = str;
|
||
|
}
|
||
|
}
|