mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
19 lines
624 B
Java
Generated
19 lines
624 B
Java
Generated
// Generated automatically from javax.crypto.spec.SecretKeySpec for testing purposes
|
|
|
|
package javax.crypto.spec;
|
|
|
|
import java.security.spec.KeySpec;
|
|
import javax.crypto.SecretKey;
|
|
|
|
public class SecretKeySpec implements KeySpec, SecretKey
|
|
{
|
|
protected SecretKeySpec() {}
|
|
public SecretKeySpec(byte[] p0, String p1){}
|
|
public SecretKeySpec(byte[] p0, int p1, int p2, String p3){}
|
|
public String getAlgorithm(){ return null; }
|
|
public String getFormat(){ return null; }
|
|
public boolean equals(Object p0){ return false; }
|
|
public byte[] getEncoded(){ return null; }
|
|
public int hashCode(){ return 0; }
|
|
}
|