summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerome Poichet <jpoichet@google.com>2014-08-11 17:08:54 -0700
committerJerome Poichet <jpoichet@google.com>2014-08-11 17:08:54 -0700
commit5304090b17fb5c07091e8573047fb7e8bf2699a7 (patch)
tree0cbfd7acb42a6f0c867ae047adadfc72a3082a9a
parent7a318a6755e0065553919fd2185eaef6df960a5c (diff)
downloadgoogle-tv-pairing-protocol-5304090b17fb5c07091e8573047fb7e8bf2699a7.tar.gz
Fixing build after bouncycastle upgrade to 1.51
Change-Id: I8f3ede0253f3d1120510a42979e47208dfe72704
-rw-r--r--java/src/com/google/polo/ssl/SslUtil.java4
1 files changed, 2 insertions, 2 deletions
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")));