2012-03-08 10:25:44 -08:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
|
2013-02-07 06:37:06 -08:00
|
|
|
import org.mozilla.gecko.mozglue.GeckoLoader;
|
|
|
|
|
2012-03-08 10:25:44 -08:00
|
|
|
import android.content.Context;
|
2013-11-18 21:09:00 -08:00
|
|
|
import org.mozilla.gecko.mozglue.RobocopTarget;
|
2012-03-08 10:25:44 -08:00
|
|
|
|
|
|
|
public class NSSBridge {
|
|
|
|
private static final String LOGTAG = "NSSBridge";
|
|
|
|
|
|
|
|
private static native String nativeEncrypt(String aDb, String aValue);
|
|
|
|
private static native String nativeDecrypt(String aDb, String aValue);
|
|
|
|
|
2013-11-18 21:09:00 -08:00
|
|
|
@RobocopTarget
|
2012-05-25 10:04:12 -07:00
|
|
|
static public String encrypt(Context context, String aValue)
|
|
|
|
throws Exception {
|
2012-03-08 10:25:44 -08:00
|
|
|
String resourcePath = context.getPackageResourcePath();
|
2013-02-07 06:37:06 -08:00
|
|
|
GeckoLoader.loadNSSLibs(context, resourcePath);
|
2012-03-08 10:25:44 -08:00
|
|
|
|
2012-05-25 10:04:12 -07:00
|
|
|
String path = GeckoProfile.get(context).getDir().toString();
|
|
|
|
return nativeEncrypt(path, aValue);
|
2012-03-08 10:25:44 -08:00
|
|
|
}
|
|
|
|
|
2013-11-18 21:09:00 -08:00
|
|
|
@RobocopTarget
|
2012-05-25 10:04:12 -07:00
|
|
|
static public String encrypt(Context context, String profilePath, String aValue)
|
|
|
|
throws Exception {
|
2012-03-08 10:25:44 -08:00
|
|
|
String resourcePath = context.getPackageResourcePath();
|
2013-02-07 06:37:06 -08:00
|
|
|
GeckoLoader.loadNSSLibs(context, resourcePath);
|
2012-03-08 10:25:44 -08:00
|
|
|
|
2012-05-25 10:04:12 -07:00
|
|
|
return nativeEncrypt(profilePath, aValue);
|
2012-03-08 10:25:44 -08:00
|
|
|
}
|
|
|
|
|
2013-11-18 21:09:00 -08:00
|
|
|
@RobocopTarget
|
2012-05-25 10:04:12 -07:00
|
|
|
static public String decrypt(Context context, String aValue)
|
|
|
|
throws Exception {
|
2012-03-08 10:25:44 -08:00
|
|
|
String resourcePath = context.getPackageResourcePath();
|
2013-02-07 06:37:06 -08:00
|
|
|
GeckoLoader.loadNSSLibs(context, resourcePath);
|
2012-03-08 10:25:44 -08:00
|
|
|
|
2012-05-25 10:04:12 -07:00
|
|
|
String path = GeckoProfile.get(context).getDir().toString();
|
|
|
|
return nativeDecrypt(path, aValue);
|
2012-03-08 10:25:44 -08:00
|
|
|
}
|
|
|
|
|
2013-11-18 21:09:00 -08:00
|
|
|
@RobocopTarget
|
2012-05-25 10:04:12 -07:00
|
|
|
static public String decrypt(Context context, String profilePath, String aValue)
|
|
|
|
throws Exception {
|
2012-03-08 10:25:44 -08:00
|
|
|
String resourcePath = context.getPackageResourcePath();
|
2013-02-07 06:37:06 -08:00
|
|
|
GeckoLoader.loadNSSLibs(context, resourcePath);
|
2012-03-08 10:25:44 -08:00
|
|
|
|
2012-05-25 10:04:12 -07:00
|
|
|
return nativeDecrypt(profilePath, aValue);
|
2012-03-08 10:25:44 -08:00
|
|
|
}
|
|
|
|
}
|