From 5304090b17fb5c07091e8573047fb7e8bf2699a7 Mon Sep 17 00:00:00 2001 From: Jerome Poichet Date: Mon, 11 Aug 2014 17:08:54 -0700 Subject: Fixing build after bouncycastle upgrade to 1.51 Change-Id: I8f3ede0253f3d1120510a42979e47208dfe72704 --- java/src/com/google/polo/ssl/SslUtil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'java/src') diff --git a/java/src/com/google/polo/ssl/SslUtil.java b/java/src/com/google/polo/ssl/SslUtil.java index cf0b3da..e27d4f7 100644 --- a/java/src/com/google/polo/ssl/SslUtil.java +++ b/java/src/com/google/polo/ssl/SslUtil.java @@ -25,13 +25,13 @@ import org.bouncycastle.asn1.x509.GeneralName; import org.bouncycastle.asn1.x509.GeneralNames; import org.bouncycastle.asn1.x509.KeyPurposeId; import org.bouncycastle.asn1.x509.KeyUsage; +import org.bouncycastle.asn1.x509.SubjectKeyIdentifier; import org.bouncycastle.asn1.x509.SubjectPublicKeyInfo; import org.bouncycastle.asn1.x509.X509Extensions; import org.bouncycastle.asn1.x509.X509Name; import org.bouncycastle.x509.X509V1CertificateGenerator; import org.bouncycastle.x509.X509V3CertificateGenerator; import org.bouncycastle.x509.extension.AuthorityKeyIdentifierStructure; -import org.bouncycastle.x509.extension.SubjectKeyIdentifierStructure; import java.io.FileInputStream; import java.io.IOException; @@ -183,7 +183,7 @@ public class SslUtil { certGen.addExtension(X509Extensions.AuthorityKeyIdentifier, true, authIdentifier); certGen.addExtension(X509Extensions.SubjectKeyIdentifier, true, - new SubjectKeyIdentifierStructure(pair.getPublic())); + SubjectKeyIdentifier.getInstance(pair.getPublic().getEncoded())); certGen.addExtension(X509Extensions.SubjectAlternativeName, false, new GeneralNames( new GeneralName(GeneralName.rfc822Name, "googletv@test.test"))); -- cgit v1.2.3