Files
open-keychain/OpenPGP-Keychain-API-Demo/src/org/openintents/openpgp/IOpenPgpService.aidl

80 lines
2.8 KiB
Plaintext
Raw Normal View History

2013-05-28 15:10:36 +02:00
/*
* Copyright (C) 2013 Dominik Schürmann <dominik@dominikschuermann.de>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2013-09-10 23:19:34 +02:00
package org.openintents.openpgp;
2013-05-28 15:10:36 +02:00
2013-09-10 23:19:34 +02:00
import org.openintents.openpgp.IOpenPgpCallback;
2013-05-28 15:10:36 +02:00
/**
* All methods are oneway, which means they are asynchronous and non-blocking.
* Results are returned to the callback, which has to be implemented on client side.
*/
2013-09-10 23:19:34 +02:00
interface IOpenPgpService {
2013-05-28 15:10:36 +02:00
/**
* Encrypt
*
* @param inputBytes
* Byte array you want to encrypt
2013-05-28 23:42:45 +02:00
* @param encryptionUserIds
* User Ids (emails) of recipients
2013-09-09 19:55:35 +02:00
* @param asciiArmor
* Encode for ASCII (Radix-64, 33 percent overhead compared to binary)
2013-05-28 23:42:45 +02:00
* @param callback
* Callback where to return results
2013-05-28 15:10:36 +02:00
*/
2013-09-10 23:19:34 +02:00
oneway void encrypt(in byte[] inputBytes, in String[] encryptionUserIds, in boolean asciiArmor, in IOpenPgpCallback callback);
2013-05-28 15:10:36 +02:00
/**
2013-06-17 19:51:41 +02:00
* Sign
2013-05-28 15:10:36 +02:00
*
* @param inputBytes
* Byte array you want to encrypt
2013-09-09 19:55:35 +02:00
* @param asciiArmor
* Encode for ASCII (Radix-64, 33 percent overhead compared to binary)
2013-05-28 23:42:45 +02:00
* @param callback
* Callback where to return results
2013-05-28 15:10:36 +02:00
*/
2013-09-10 23:19:34 +02:00
oneway void sign(in byte[] inputBytes, in boolean asciiArmor, in IOpenPgpCallback callback);
2013-05-28 15:10:36 +02:00
/**
2013-09-14 02:08:06 +02:00
* Sign then encrypt
2013-05-28 15:10:36 +02:00
*
* @param inputBytes
* Byte array you want to encrypt
2013-06-17 19:51:41 +02:00
* @param encryptionUserIds
* User Ids (emails) of recipients
2013-05-28 23:42:45 +02:00
* @param signatureUserId
* User Ids (email) of sender
2013-09-09 19:55:35 +02:00
* @param asciiArmor
* Encode for ASCII (Radix-64, 33 percent overhead compared to binary)
2013-05-28 23:42:45 +02:00
* @param callback
* Callback where to return results
2013-05-28 15:10:36 +02:00
*/
2013-09-14 02:08:06 +02:00
oneway void signAndEncrypt(in byte[] inputBytes, in String[] encryptionUserIds, in boolean asciiArmor, in IOpenPgpCallback callback);
2013-05-28 15:10:36 +02:00
/**
* Decrypts and verifies given input bytes. If no signature is present this method
* will only decrypt.
*
* @param inputBytes
* Byte array you want to decrypt and verify
2013-05-28 23:42:45 +02:00
* @param callback
* Callback where to return results
2013-05-28 15:10:36 +02:00
*/
2013-09-10 23:19:34 +02:00
oneway void decryptAndVerify(in byte[] inputBytes, in IOpenPgpCallback callback);
2013-07-01 23:19:53 +02:00
2013-05-28 15:10:36 +02:00
}