blob: bca8f68ac9f1ea6f6692293e24ff4e38ea753090 [file] [log] [blame]
Oscar Montemayor8da98e32010-01-06 11:35:59 -08001/*
2 * Copyright (C) 2010 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.os.Environment;
Oscar Montemayor1ff8fee2010-02-22 11:16:51 -080020import android.os.FileUtils;
Oscar Montemayor8da98e32010-01-06 11:35:59 -080021import android.os.Process;
22
23import java.io.File;
24import java.io.FileInputStream;
25import java.io.FileOutputStream;
26import java.io.IOException;
27import java.security.NoSuchAlgorithmException;
28import java.security.SecureRandom;
29
30import javax.crypto.KeyGenerator;
31import javax.crypto.SecretKey;
32
Elliott Hughes460c26e2010-11-11 16:42:09 -080033import libcore.io.IoUtils;
34
Oscar Montemayor8da98e32010-01-06 11:35:59 -080035/**
36 *@hide
37 */
38public class SystemKeyStore {
39
40 private static final String SYSTEM_KEYSTORE_DIRECTORY = "misc/systemkeys";
Oscar Montemayorb62e8132010-01-14 16:38:40 -080041 private static final String KEY_FILE_EXTENSION = ".sks";
Oscar Montemayor8da98e32010-01-06 11:35:59 -080042 private static SystemKeyStore mInstance = new SystemKeyStore();
43
44 private SystemKeyStore() { }
45
46 public static SystemKeyStore getInstance() {
47 return mInstance;
48 }
49
Oscar Montemayorb62e8132010-01-14 16:38:40 -080050 public static String toHexString(byte[] keyData) {
51 if (keyData == null) {
52 return null;
53 }
54 int keyLen = keyData.length;
55 int expectedStringLen = keyData.length * 2;
56 StringBuilder sb = new StringBuilder(expectedStringLen);
57 for (int i = 0; i < keyData.length; i++) {
58 String hexStr = Integer.toString(keyData[i] & 0x00FF, 16);
59 if (hexStr.length() == 1) {
60 hexStr = "0" + hexStr;
61 }
62 sb.append(hexStr);
63 }
64 return sb.toString();
65 }
66
67 public String generateNewKeyHexString(int numBits, String algName, String keyName)
68 throws NoSuchAlgorithmException {
69 return toHexString(generateNewKey(numBits, algName, keyName));
70 }
71
Oscar Montemayor8da98e32010-01-06 11:35:59 -080072 public byte[] generateNewKey(int numBits, String algName, String keyName)
73 throws NoSuchAlgorithmException {
74
75 // Check if key with similar name exists. If so, return null.
76 File keyFile = getKeyFile(keyName);
77 if (keyFile.exists()) {
78 throw new IllegalArgumentException();
79 }
80
81 KeyGenerator skg = KeyGenerator.getInstance(algName);
82 SecureRandom srng = SecureRandom.getInstance("SHA1PRNG");
83 skg.init(numBits, srng);
84
85 SecretKey sk = skg.generateKey();
86 byte[] retKey = sk.getEncoded();
87
88 try {
89 // Store the key
90 if (!keyFile.createNewFile()) {
91 throw new IllegalArgumentException();
92 }
93
94 FileOutputStream fos = new FileOutputStream(keyFile);
95 fos.write(retKey);
96 fos.flush();
Dianne Hackborn8bdf5932010-10-15 12:54:40 -070097 FileUtils.sync(fos);
Oscar Montemayor8da98e32010-01-06 11:35:59 -080098 fos.close();
Oscar Montemayor1ff8fee2010-02-22 11:16:51 -080099 FileUtils.setPermissions(keyFile.getName(), (FileUtils.S_IRUSR | FileUtils.S_IWUSR),
100 -1, -1);
Oscar Montemayor8da98e32010-01-06 11:35:59 -0800101 } catch (IOException ioe) {
102 return null;
103 }
104 return retKey;
105 }
106
107 private File getKeyFile(String keyName) {
108 File sysKeystoreDir = new File(Environment.getDataDirectory(),
109 SYSTEM_KEYSTORE_DIRECTORY);
Oscar Montemayorb62e8132010-01-14 16:38:40 -0800110 File keyFile = new File(sysKeystoreDir, keyName + KEY_FILE_EXTENSION);
Oscar Montemayor8da98e32010-01-06 11:35:59 -0800111 return keyFile;
112 }
113
Rich Cannings8d578832010-09-09 15:12:40 -0700114 public String retrieveKeyHexString(String keyName) throws IOException {
Oscar Montemayorb62e8132010-01-14 16:38:40 -0800115 return toHexString(retrieveKey(keyName));
116 }
117
Rich Cannings8d578832010-09-09 15:12:40 -0700118 public byte[] retrieveKey(String keyName) throws IOException {
Oscar Montemayor8da98e32010-01-06 11:35:59 -0800119 File keyFile = getKeyFile(keyName);
120 if (!keyFile.exists()) {
121 return null;
122 }
Elliott Hughes460c26e2010-11-11 16:42:09 -0800123 return IoUtils.readFileAsByteArray(keyFile.toString());
Oscar Montemayor8da98e32010-01-06 11:35:59 -0800124 }
125
126 public void deleteKey(String keyName) {
127
128 // Get the file first.
129 File keyFile = getKeyFile(keyName);
130 if (!keyFile.exists()) {
131 throw new IllegalArgumentException();
132 }
133
134 keyFile.delete();
135 }
136}