summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2011-05-27 00:51:17 -0700
committerBrian Carlstrom <bdc@google.com>2011-05-27 00:51:17 -0700
commit8334df75c9091a55ed57d59e396817a02f1d9085 (patch)
tree67f7cd30ae5fbddb9e54ae3c98552a8b80b188a7 /src
parent2a85883088558f87a0eb4a88bd5531401396f5b4 (diff)
downloadandroid_packages_apps_KeyChain-8334df75c9091a55ed57d59e396817a02f1d9085.tar.gz
android_packages_apps_KeyChain-8334df75c9091a55ed57d59e396817a02f1d9085.tar.bz2
android_packages_apps_KeyChain-8334df75c9091a55ed57d59e396817a02f1d9085.zip
Tracking merge of dalvik-dev to master
Change-Id: Idc318eb8f4ca64ea73aa6732e3d4546e7e631019
Diffstat (limited to 'src')
-rw-r--r--src/com/android/keychain/KeyChainService.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/keychain/KeyChainService.java b/src/com/android/keychain/KeyChainService.java
index b02dfac..b2a4567 100644
--- a/src/com/android/keychain/KeyChainService.java
+++ b/src/com/android/keychain/KeyChainService.java
@@ -41,7 +41,7 @@ import java.security.cert.CertificateFactory;
import java.security.cert.X509Certificate;
import java.util.Collections;
import javax.security.auth.x500.X500Principal;
-import org.apache.harmony.luni.util.Base64;
+import libcore.io.Base64;
import org.apache.harmony.xnet.provider.jsse.TrustedCertificateStore;
public class KeyChainService extends Service {
@@ -210,7 +210,7 @@ public class KeyChainService extends Service {
Bundle options) {
byte[] bytes = new byte[AUTHTOKEN_LENGTH];
mSecureRandom.nextBytes(bytes);
- String authToken = Base64.encode(bytes, Charsets.US_ASCII);
+ String authToken = Base64.encode(bytes);
Bundle bundle = new Bundle();
bundle.putString(AccountManager.KEY_ACCOUNT_NAME, account.name);
bundle.putString(AccountManager.KEY_ACCOUNT_TYPE, KeyChain.ACCOUNT_TYPE);