mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
18 lines
538 B
Java
Generated
18 lines
538 B
Java
Generated
// Generated automatically from javax.security.cert.Certificate for testing purposes
|
|
|
|
package javax.security.cert;
|
|
|
|
import java.security.PublicKey;
|
|
|
|
abstract public class Certificate
|
|
{
|
|
public Certificate(){}
|
|
public abstract PublicKey getPublicKey();
|
|
public abstract String toString();
|
|
public abstract byte[] getEncoded();
|
|
public abstract void verify(PublicKey p0);
|
|
public abstract void verify(PublicKey p0, String p1);
|
|
public boolean equals(Object p0){ return false; }
|
|
public int hashCode(){ return 0; }
|
|
}
|