blob: f75208dfd0aa2ab1473782a82b14d36d3268655c [file] [log] [blame]
Chia-chi Yeh9b7a3f12009-09-18 12:00:12 +08001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.security;
18
19import android.content.ActivityNotFoundException;
20import android.content.Context;
21import android.content.Intent;
22import android.util.Log;
Brian Carlstrom9d7faa92011-06-07 13:45:33 -070023import com.android.org.bouncycastle.openssl.PEMReader;
24import com.android.org.bouncycastle.openssl.PEMWriter;
25import java.io.ByteArrayInputStream;
26import java.io.ByteArrayOutputStream;
27import java.io.IOException;
28import java.io.InputStreamReader;
29import java.io.OutputStreamWriter;
30import java.io.Reader;
31import java.io.Writer;
32import java.nio.charset.Charsets;
Chia-chi Yeh9b7a3f12009-09-18 12:00:12 +080033import java.security.KeyPair;
Brian Carlstrom9d7faa92011-06-07 13:45:33 -070034import java.util.ArrayList;
35import java.util.List;
Chia-chi Yeh9b7a3f12009-09-18 12:00:12 +080036
37/**
38 * {@hide}
39 */
40public class Credentials {
41 private static final String LOGTAG = "Credentials";
Chia-chi Yeh44039172009-09-21 11:53:59 +080042
Chia-chi Yeh44039172009-09-21 11:53:59 +080043 public static final String INSTALL_ACTION = "android.credentials.INSTALL";
44
Brian Carlstrom4a9e1a22011-04-22 15:45:22 -070045 public static final String UNLOCK_ACTION = "com.android.credentials.UNLOCK";
46
Chia-chi Yeh9b7a3f12009-09-18 12:00:12 +080047 /** Key prefix for CA certificates. */
48 public static final String CA_CERTIFICATE = "CACERT_";
49
50 /** Key prefix for user certificates. */
51 public static final String USER_CERTIFICATE = "USRCERT_";
52
53 /** Key prefix for user private keys. */
54 public static final String USER_PRIVATE_KEY = "USRPKEY_";
55
56 /** Key prefix for VPN. */
57 public static final String VPN = "VPN_";
58
59 /** Key prefix for WIFI. */
60 public static final String WIFI = "WIFI_";
61
62 /** Data type for public keys. */
Brian Carlstroma00a2b32011-06-29 10:42:35 -070063 public static final String EXTRA_PUBLIC_KEY = "KEY";
Chia-chi Yeh9b7a3f12009-09-18 12:00:12 +080064
65 /** Data type for private keys. */
Brian Carlstroma00a2b32011-06-29 10:42:35 -070066 public static final String EXTRA_PRIVATE_KEY = "PKEY";
Chia-chi Yeh9b7a3f12009-09-18 12:00:12 +080067
Brian Carlstrom67c30df2011-06-24 02:13:23 -070068 // historically used by Android
69 public static final String EXTENSION_CRT = ".crt";
70 public static final String EXTENSION_P12 = ".p12";
71 // commonly used on Windows
72 public static final String EXTENSION_CER = ".cer";
73 public static final String EXTENSION_PFX = ".pfx";
74
Brian Carlstrom9d7faa92011-06-07 13:45:33 -070075 /**
76 * Convert objects to a PEM format, which is used for
77 * CA_CERTIFICATE, USER_CERTIFICATE, and USER_PRIVATE_KEY
78 * entries.
79 */
80 public static byte[] convertToPem(Object... objects) throws IOException {
81 ByteArrayOutputStream bao = new ByteArrayOutputStream();
82 Writer writer = new OutputStreamWriter(bao, Charsets.US_ASCII);
83 PEMWriter pw = new PEMWriter(writer);
84 for (Object o : objects) {
85 pw.writeObject(o);
86 }
87 pw.close();
88 return bao.toByteArray();
89 }
90 /**
91 * Convert objects from PEM format, which is used for
92 * CA_CERTIFICATE, USER_CERTIFICATE, and USER_PRIVATE_KEY
93 * entries.
94 */
95 public static List<Object> convertFromPem(byte[] bytes) throws IOException {
96 ByteArrayInputStream bai = new ByteArrayInputStream(bytes);
97 Reader reader = new InputStreamReader(bai, Charsets.US_ASCII);
98 PEMReader pr = new PEMReader(reader);
99
100 List<Object> result = new ArrayList<Object>();
101 Object o;
102 while ((o = pr.readObject()) != null) {
103 result.add(o);
104 }
105 pr.close();
106 return result;
107 }
108
Chia-chi Yeh44039172009-09-21 11:53:59 +0800109 private static Credentials singleton;
110
Chia-chi Yeh9b7a3f12009-09-18 12:00:12 +0800111 public static Credentials getInstance() {
112 if (singleton == null) {
113 singleton = new Credentials();
114 }
115 return singleton;
116 }
117
118 public void unlock(Context context) {
119 try {
Brian Carlstrom4a9e1a22011-04-22 15:45:22 -0700120 Intent intent = new Intent(UNLOCK_ACTION);
Chia-chi Yeh9b7a3f12009-09-18 12:00:12 +0800121 context.startActivity(intent);
122 } catch (ActivityNotFoundException e) {
123 Log.w(LOGTAG, e.toString());
124 }
125 }
126
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700127 public void install(Context context) {
128 try {
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700129 Intent intent = KeyChain.createInstallIntent();
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700130 context.startActivity(intent);
131 } catch (ActivityNotFoundException e) {
132 Log.w(LOGTAG, e.toString());
133 }
134 }
135
Chia-chi Yeh9b7a3f12009-09-18 12:00:12 +0800136 public void install(Context context, KeyPair pair) {
137 try {
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700138 Intent intent = KeyChain.createInstallIntent();
139 intent.putExtra(EXTRA_PRIVATE_KEY, pair.getPrivate().getEncoded());
140 intent.putExtra(EXTRA_PUBLIC_KEY, pair.getPublic().getEncoded());
Chia-chi Yeh9b7a3f12009-09-18 12:00:12 +0800141 context.startActivity(intent);
142 } catch (ActivityNotFoundException e) {
143 Log.w(LOGTAG, e.toString());
144 }
145 }
146
147 public void install(Context context, String type, byte[] value) {
148 try {
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700149 Intent intent = KeyChain.createInstallIntent();
Chia-chi Yeh9b7a3f12009-09-18 12:00:12 +0800150 intent.putExtra(type, value);
151 context.startActivity(intent);
152 } catch (ActivityNotFoundException e) {
153 Log.w(LOGTAG, e.toString());
154 }
155 }
Chia-chi Yeh9b7a3f12009-09-18 12:00:12 +0800156}