2010-07-16 20:13:12 +00:00
|
|
|
/*
|
2017-02-10 17:29:01 +01:00
|
|
|
* Copyright (C) 2017 Dominik Schürmann <dominik@dominikschuermann.de>
|
2010-07-16 20:13:12 +00:00
|
|
|
*
|
2014-04-08 11:37:38 +02:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
2010-07-16 20:13:12 +00:00
|
|
|
*
|
2014-04-08 11:37:38 +02:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
2010-07-16 20:13:12 +00:00
|
|
|
*
|
2014-04-08 11:37:38 +02:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2010-07-16 20:13:12 +00:00
|
|
|
*/
|
|
|
|
|
|
2017-02-10 17:29:01 +01:00
|
|
|
package org.sufficientlysecure.keychain;
|
2010-07-16 20:13:12 +00:00
|
|
|
|
2017-02-10 17:29:01 +01:00
|
|
|
import org.bouncycastle.jce.provider.BouncyCastleProvider;
|
|
|
|
|
import org.sufficientlysecure.libkeychain.BuildConfig;
|
2010-07-16 20:13:12 +00:00
|
|
|
|
2017-02-10 17:29:01 +01:00
|
|
|
public final class LibConstants {
|
2010-07-16 20:13:12 +00:00
|
|
|
|
2017-02-10 17:29:01 +01:00
|
|
|
public static final boolean DEBUG = BuildConfig.DEBUG;
|
|
|
|
|
|
|
|
|
|
public static final String TAG = DEBUG ? "Keychain D" : "Keychain";
|
|
|
|
|
|
|
|
|
|
public static final String BOUNCY_CASTLE_PROVIDER_NAME = BouncyCastleProvider.PROVIDER_NAME;
|
2010-07-16 20:13:12 +00:00
|
|
|
|
|
|
|
|
}
|