aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/Constants.java
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2013-09-15 16:42:08 +0200
committerDominik Schürmann <dominik@dominikschuermann.de>2013-09-15 16:42:08 +0200
commit5aebd115d4a7a8ba7d538621bbf9e88ef941f48c (patch)
tree14398fad82c0d244d19028cafb07ad4234e994b9 /OpenPGP-Keychain/src/org/sufficientlysecure/keychain/Constants.java
parent121f8aaca040cd54d8182f0ab9adba961bdfde6d (diff)
downloadopen-keychain-5aebd115d4a7a8ba7d538621bbf9e88ef941f48c.tar.gz
open-keychain-5aebd115d4a7a8ba7d538621bbf9e88ef941f48c.tar.bz2
open-keychain-5aebd115d4a7a8ba7d538621bbf9e88ef941f48c.zip
Put PgpMain methods in separate opbject classes, handle passphrase dialog in EditKey not in SecretKeyList
Diffstat (limited to 'OpenPGP-Keychain/src/org/sufficientlysecure/keychain/Constants.java')
-rw-r--r--OpenPGP-Keychain/src/org/sufficientlysecure/keychain/Constants.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/Constants.java b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/Constants.java
index 846180c0c..74b407cd4 100644
--- a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/Constants.java
+++ b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/Constants.java
@@ -16,6 +16,8 @@
package org.sufficientlysecure.keychain;
+import org.spongycastle.jce.provider.BouncyCastleProvider;
+
import android.os.Environment;
public final class Constants {
@@ -29,6 +31,10 @@ public final class Constants {
// as defined in http://tools.ietf.org/html/rfc3156, section 7
public static final String NFC_MIME = "application/pgp-keys";
+ // Not BC due to the use of Spongy Castle for Android
+ public static final String SC = BouncyCastleProvider.PROVIDER_NAME;
+ public static final String BOUNCY_CASTLE_PROVIDER_NAME = SC;
+
public static final String INTENT_PREFIX = PACKAGE_NAME + ".action.";
public static final class path {