6 lines
206 B
Plaintext
6 lines
206 B
Plaintext
|
|
package org.thialfihar.android.apg;
|
||
|
|
|
||
|
|
interface IApgService {
|
||
|
|
String encrypt_with_passphrase(String msg, String passphrase);
|
||
|
|
String decrypt_with_passphrase(String encrypted_msg, String passphrase);
|
||
|
|
}
|