blob: 46b2bee4a939a0ac55ea7f91ec4946548342416f [file] [log] [blame]
/*
* Copyright (C) 2006 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.net.http;
import android.os.Bundle;
import java.text.DateFormat;
import java.util.Vector;
import java.security.cert.X509Certificate;
import org.bouncycastle.asn1.DERObjectIdentifier;
import org.bouncycastle.asn1.x509.X509Name;
/**
* SSL certificate info (certificate details) class
*/
public class SslCertificate {
/**
* Name of the entity this certificate is issued to
*/
private DName mIssuedTo;
/**
* Name of the entity this certificate is issued by
*/
private DName mIssuedBy;
/**
* Not-before date from the validity period
*/
private String mValidNotBefore;
/**
* Not-after date from the validity period
*/
private String mValidNotAfter;
/**
* Bundle key names
*/
private static final String ISSUED_TO = "issued-to";
private static final String ISSUED_BY = "issued-by";
private static final String VALID_NOT_BEFORE = "valid-not-before";
private static final String VALID_NOT_AFTER = "valid-not-after";
/**
* Saves the certificate state to a bundle
* @param certificate The SSL certificate to store
* @return A bundle with the certificate stored in it or null if fails
*/
public static Bundle saveState(SslCertificate certificate) {
Bundle bundle = null;
if (certificate != null) {
bundle = new Bundle();
bundle.putString(ISSUED_TO, certificate.getIssuedTo().getDName());
bundle.putString(ISSUED_BY, certificate.getIssuedBy().getDName());
bundle.putString(VALID_NOT_BEFORE, certificate.getValidNotBefore());
bundle.putString(VALID_NOT_AFTER, certificate.getValidNotAfter());
}
return bundle;
}
/**
* Restores the certificate stored in the bundle
* @param bundle The bundle with the certificate state stored in it
* @return The SSL certificate stored in the bundle or null if fails
*/
public static SslCertificate restoreState(Bundle bundle) {
if (bundle != null) {
return new SslCertificate(
bundle.getString(ISSUED_TO),
bundle.getString(ISSUED_BY),
bundle.getString(VALID_NOT_BEFORE),
bundle.getString(VALID_NOT_AFTER));
}
return null;
}
/**
* Creates a new SSL certificate object
* @param issuedTo The entity this certificate is issued to
* @param issuedBy The entity that issued this certificate
* @param validNotBefore The not-before date from the certificate validity period
* @param validNotAfter The not-after date from the certificate validity period
*/
public SslCertificate(
String issuedTo, String issuedBy, String validNotBefore, String validNotAfter) {
mIssuedTo = new DName(issuedTo);
mIssuedBy = new DName(issuedBy);
mValidNotBefore = validNotBefore;
mValidNotAfter = validNotAfter;
}
/**
* Creates a new SSL certificate object from an X509 certificate
* @param certificate X509 certificate
*/
public SslCertificate(X509Certificate certificate) {
this(certificate.getSubjectDN().getName(),
certificate.getIssuerDN().getName(),
DateFormat.getInstance().format(certificate.getNotBefore()),
DateFormat.getInstance().format(certificate.getNotAfter()));
}
/**
* @return Not-before date from the certificate validity period or
* "" if none has been set
*/
public String getValidNotBefore() {
return mValidNotBefore != null ? mValidNotBefore : "";
}
/**
* @return Not-after date from the certificate validity period or
* "" if none has been set
*/
public String getValidNotAfter() {
return mValidNotAfter != null ? mValidNotAfter : "";
}
/**
* @return Issued-to distinguished name or null if none has been set
*/
public DName getIssuedTo() {
return mIssuedTo;
}
/**
* @return Issued-by distinguished name or null if none has been set
*/
public DName getIssuedBy() {
return mIssuedBy;
}
/**
* @return A string representation of this certificate for debugging
*/
public String toString() {
return
"Issued to: " + mIssuedTo.getDName() + ";\n" +
"Issued by: " + mIssuedBy.getDName() + ";\n";
}
/**
* A distinguished name helper class: a 3-tuple of:
* - common name (CN),
* - organization (O),
* - organizational unit (OU)
*/
public class DName {
/**
* Distinguished name (normally includes CN, O, and OU names)
*/
private String mDName;
/**
* Common-name (CN) component of the name
*/
private String mCName;
/**
* Organization (O) component of the name
*/
private String mOName;
/**
* Organizational Unit (OU) component of the name
*/
private String mUName;
/**
* Creates a new distinguished name
* @param dName The distinguished name
*/
public DName(String dName) {
if (dName != null) {
X509Name x509Name = new X509Name(mDName = dName);
Vector val = x509Name.getValues();
Vector oid = x509Name.getOIDs();
for (int i = 0; i < oid.size(); i++) {
if (oid.elementAt(i).equals(X509Name.CN)) {
mCName = (String) val.elementAt(i);
continue;
}
if (oid.elementAt(i).equals(X509Name.O)) {
mOName = (String) val.elementAt(i);
continue;
}
if (oid.elementAt(i).equals(X509Name.OU)) {
mUName = (String) val.elementAt(i);
continue;
}
}
}
}
/**
* @return The distinguished name (normally includes CN, O, and OU names)
*/
public String getDName() {
return mDName != null ? mDName : "";
}
/**
* @return The Common-name (CN) component of this name
*/
public String getCName() {
return mCName != null ? mCName : "";
}
/**
* @return The Organization (O) component of this name
*/
public String getOName() {
return mOName != null ? mOName : "";
}
/**
* @return The Organizational Unit (OU) component of this name
*/
public String getUName() {
return mUName != null ? mUName : "";
}
}
}