diff options
author | Alex Klyubin <klyubin@google.com> | 2015-01-14 16:45:51 -0800 |
---|---|---|
committer | Alex Klyubin <klyubin@google.com> | 2015-01-14 16:45:51 -0800 |
commit | cd2329dbfa5aef82c38ffa36a478bbaf5088af92 (patch) | |
tree | 801a25d5636d084cdbd8c5c8589a7676328e2038 /keystore/java/android/security/KeyChain.java | |
parent | aa7a646eebb9b22d1421f8b09a09669bdb10d8b7 (diff) |
Remove DSA support from Android KeyStore and KeyChain.
We're switching from OpenSSL to BoringSSL which does not support DSA.
Bug: 17409664
Change-Id: Id9b52666ba9ef234076105c925610b5b312988a5
Diffstat (limited to 'keystore/java/android/security/KeyChain.java')
-rw-r--r-- | keystore/java/android/security/KeyChain.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keystore/java/android/security/KeyChain.java b/keystore/java/android/security/KeyChain.java index 607817a7aa60..dfa41e8af2aa 100644 --- a/keystore/java/android/security/KeyChain.java +++ b/keystore/java/android/security/KeyChain.java @@ -242,7 +242,7 @@ public final class KeyChain { * @param response Callback to invoke when the request completes; * must not be null * @param keyTypes The acceptable types of asymmetric keys such as - * "RSA" or "DSA", or a null array. + * "EC" or "RSA", or a null array. * @param issuers The acceptable certificate issuers for the * certificate matching the private key, or null. * @param host The host name of the server requesting the @@ -263,7 +263,7 @@ public final class KeyChain { * * keyTypes would allow the list to be filtered and typically * will be set correctly by the server. In practice today, - * most all users will want only RSA, rarely DSA, and usually + * most all users will want only RSA or EC, and usually * only a small number of certs will be available. * * issuers is typically not useful. Some servers historically |