mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
49 lines
1.7 KiB
Java
49 lines
1.7 KiB
Java
/* 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;
|
|
|
|
import android.content.Context;
|
|
|
|
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);
|
|
|
|
static public String encrypt(Context context, String aValue)
|
|
throws Exception {
|
|
String resourcePath = context.getPackageResourcePath();
|
|
GeckoAppShell.loadNSSLibs(context, resourcePath);
|
|
|
|
String path = GeckoProfile.get(context).getDir().toString();
|
|
return nativeEncrypt(path, aValue);
|
|
}
|
|
|
|
static public String encrypt(Context context, String profilePath, String aValue)
|
|
throws Exception {
|
|
String resourcePath = context.getPackageResourcePath();
|
|
GeckoAppShell.loadNSSLibs(context, resourcePath);
|
|
|
|
return nativeEncrypt(profilePath, aValue);
|
|
}
|
|
|
|
static public String decrypt(Context context, String aValue)
|
|
throws Exception {
|
|
String resourcePath = context.getPackageResourcePath();
|
|
GeckoAppShell.loadNSSLibs(context, resourcePath);
|
|
|
|
String path = GeckoProfile.get(context).getDir().toString();
|
|
return nativeDecrypt(path, aValue);
|
|
}
|
|
|
|
static public String decrypt(Context context, String profilePath, String aValue)
|
|
throws Exception {
|
|
String resourcePath = context.getPackageResourcePath();
|
|
GeckoAppShell.loadNSSLibs(context, resourcePath);
|
|
|
|
return nativeDecrypt(profilePath, aValue);
|
|
}
|
|
}
|