summaryrefslogtreecommitdiff
path: root/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/x509/X509V3CertificateGenerator.java
diff options
context:
space:
mode:
Diffstat (limited to 'repackaged/bcprov/src/main/java/com/android/org/bouncycastle/x509/X509V3CertificateGenerator.java')
-rw-r--r--repackaged/bcprov/src/main/java/com/android/org/bouncycastle/x509/X509V3CertificateGenerator.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/x509/X509V3CertificateGenerator.java b/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/x509/X509V3CertificateGenerator.java
index 50b5e8b9..516b5224 100644
--- a/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/x509/X509V3CertificateGenerator.java
+++ b/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/x509/X509V3CertificateGenerator.java
@@ -46,7 +46,6 @@ import com.android.org.bouncycastle.x509.extension.X509ExtensionUtil;
* @deprecated use org.bouncycastle.cert.X509v3CertificateBuilder.
* @hide This class is not part of the Android public SDK API
*/
-@libcore.api.CorePlatformApi
public class X509V3CertificateGenerator
{
private final JcaJceHelper bcHelper = new BCJcaJceHelper(); // needed to force provider loading
@@ -59,7 +58,6 @@ public class X509V3CertificateGenerator
private X509ExtensionsGenerator extGenerator;
@android.compat.annotation.UnsupportedAppUsage
- @libcore.api.CorePlatformApi
public X509V3CertificateGenerator()
{
tbsGen = new V3TBSCertificateGenerator();
@@ -79,7 +77,6 @@ public class X509V3CertificateGenerator
* set the serial number for the certificate.
*/
@android.compat.annotation.UnsupportedAppUsage
- @libcore.api.CorePlatformApi
public void setSerialNumber(
BigInteger serialNumber)
{
@@ -96,7 +93,6 @@ public class X509V3CertificateGenerator
* certificate.
*/
@android.compat.annotation.UnsupportedAppUsage
- @libcore.api.CorePlatformApi
public void setIssuerDN(
X500Principal issuer)
{
@@ -122,7 +118,6 @@ public class X509V3CertificateGenerator
}
@android.compat.annotation.UnsupportedAppUsage
- @libcore.api.CorePlatformApi
public void setNotBefore(
Date date)
{
@@ -130,7 +125,6 @@ public class X509V3CertificateGenerator
}
@android.compat.annotation.UnsupportedAppUsage
- @libcore.api.CorePlatformApi
public void setNotAfter(
Date date)
{
@@ -141,7 +135,6 @@ public class X509V3CertificateGenerator
* Set the subject distinguished name. The subject describes the entity associated with the public key.
*/
@android.compat.annotation.UnsupportedAppUsage
- @libcore.api.CorePlatformApi
public void setSubjectDN(
X500Principal subject)
{
@@ -166,7 +159,6 @@ public class X509V3CertificateGenerator
}
@android.compat.annotation.UnsupportedAppUsage
- @libcore.api.CorePlatformApi
public void setPublicKey(
PublicKey key)
throws IllegalArgumentException
@@ -189,7 +181,6 @@ public class X509V3CertificateGenerator
* @param signatureAlgorithm string representation of the algorithm name.
*/
@android.compat.annotation.UnsupportedAppUsage
- @libcore.api.CorePlatformApi
public void setSignatureAlgorithm(
String signatureAlgorithm)
{
@@ -432,7 +423,6 @@ public class X509V3CertificateGenerator
* </p>
*/
@android.compat.annotation.UnsupportedAppUsage
- @libcore.api.CorePlatformApi
public X509Certificate generate(
PrivateKey key)
throws CertificateEncodingException, IllegalStateException, NoSuchAlgorithmException, SignatureException, InvalidKeyException