FileDocCategorySizeDatePackage
KeyPairGeneratorSpec.javaAPI DocAndroid 5.1 API2551Sat Mar 14 14:09:40 GMT 2015android.security

KeyPairGeneratorSpec.java

package android.security;
public final class KeyPairGeneratorSpec
  implements java.security.spec.AlgorithmParameterSpec
{
public static final class Builder
{
public  Builder(android.content.Context context) { throw new RuntimeException("Stub!"); }
public  android.security.KeyPairGeneratorSpec.Builder setAlias(java.lang.String alias) { throw new RuntimeException("Stub!"); }
public  android.security.KeyPairGeneratorSpec.Builder setKeyType(java.lang.String keyType) throws java.security.NoSuchAlgorithmException { throw new RuntimeException("Stub!"); }
public  android.security.KeyPairGeneratorSpec.Builder setKeySize(int keySize) { throw new RuntimeException("Stub!"); }
public  android.security.KeyPairGeneratorSpec.Builder setAlgorithmParameterSpec(java.security.spec.AlgorithmParameterSpec spec) { throw new RuntimeException("Stub!"); }
public  android.security.KeyPairGeneratorSpec.Builder setSubject(javax.security.auth.x500.X500Principal subject) { throw new RuntimeException("Stub!"); }
public  android.security.KeyPairGeneratorSpec.Builder setSerialNumber(java.math.BigInteger serialNumber) { throw new RuntimeException("Stub!"); }
public  android.security.KeyPairGeneratorSpec.Builder setStartDate(java.util.Date startDate) { throw new RuntimeException("Stub!"); }
public  android.security.KeyPairGeneratorSpec.Builder setEndDate(java.util.Date endDate) { throw new RuntimeException("Stub!"); }
public  android.security.KeyPairGeneratorSpec.Builder setEncryptionRequired() { throw new RuntimeException("Stub!"); }
public  android.security.KeyPairGeneratorSpec build() { throw new RuntimeException("Stub!"); }
}
KeyPairGeneratorSpec() { throw new RuntimeException("Stub!"); }
public  android.content.Context getContext() { throw new RuntimeException("Stub!"); }
public  java.lang.String getKeystoreAlias() { throw new RuntimeException("Stub!"); }
public  java.lang.String getKeyType() { throw new RuntimeException("Stub!"); }
public  int getKeySize() { throw new RuntimeException("Stub!"); }
public  java.security.spec.AlgorithmParameterSpec getAlgorithmParameterSpec() { throw new RuntimeException("Stub!"); }
public  javax.security.auth.x500.X500Principal getSubjectDN() { throw new RuntimeException("Stub!"); }
public  java.math.BigInteger getSerialNumber() { throw new RuntimeException("Stub!"); }
public  java.util.Date getStartDate() { throw new RuntimeException("Stub!"); }
public  java.util.Date getEndDate() { throw new RuntimeException("Stub!"); }
public  boolean isEncryptionRequired() { throw new RuntimeException("Stub!"); }
}