List of usage examples for java.security PrivateKey PrivateKey
PrivateKey
From source file:com.thoughtworks.go.security.Registration.java
private static PrivateKey emptyPrivateKey() { return new PrivateKey() { public String getAlgorithm() { return null; }//from w w w .ja v a 2s . c o m public String getFormat() { return null; } public byte[] getEncoded() { return new byte[0]; } }; }