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

99 lines
3.9 KiB
Plaintext
Raw Normal View History

2013-05-28 09:10:36 -04: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 17:19:34 -04:00
package org.openintents.openpgp;
2013-05-28 09:10:36 -04:00
2013-09-10 17:19:34 -04:00
import org.openintents.openpgp.IOpenPgpCallback;
2013-05-28 09:10:36 -04: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 17:19:34 -04:00
interface IOpenPgpService {
2013-10-02 13:08:33 -04:00
2013-05-28 09:10:36 -04:00
/**
* Encrypt
*
2013-10-02 13:08:33 -04:00
* After successful encryption, callback's onSuccess will contain the resulting output bytes.
*
2013-05-28 09:10:36 -04:00
* @param inputBytes
* Byte array you want to encrypt
2013-05-28 17:42:45 -04:00
* @param encryptionUserIds
* User Ids (emails) of recipients
2013-09-09 13:55:35 -04:00
* @param asciiArmor
2013-10-02 13:08:33 -04:00
* Encode result for ASCII (Radix-64, 33 percent overhead compared to binary)
* @param allowUserInteraction
* Allows the OpenPGP Provider to handle missing keys by showing activities
2013-05-28 17:42:45 -04:00
* @param callback
* Callback where to return results
2013-05-28 09:10:36 -04:00
*/
2013-10-02 13:08:33 -04:00
oneway void encrypt(in byte[] inputBytes, in String[] encryptionUserIds, in boolean asciiArmor,
in IOpenPgpCallback callback);
2013-05-28 09:10:36 -04:00
/**
2013-06-17 13:51:41 -04:00
* Sign
2013-10-02 13:08:33 -04:00
*
* After successful signing, callback's onSuccess will contain the resulting output bytes.
2013-05-28 09:10:36 -04:00
*
* @param inputBytes
2013-10-02 13:08:33 -04:00
* Byte array you want to sign
2013-09-09 13:55:35 -04:00
* @param asciiArmor
2013-10-02 13:08:33 -04:00
* Encode result for ASCII (Radix-64, 33 percent overhead compared to binary)
* @param allowUserInteraction
* Allows the OpenPGP Provider to handle missing keys by showing activities
2013-05-28 17:42:45 -04:00
* @param callback
* Callback where to return results
2013-05-28 09:10:36 -04:00
*/
2013-10-02 13:08:33 -04:00
oneway void sign(in byte[] inputBytes, in boolean asciiArmor, in IOpenPgpCallback callback);
2013-05-28 09:10:36 -04:00
/**
2013-09-13 20:08:06 -04:00
* Sign then encrypt
2013-10-02 13:08:33 -04:00
*
* After successful signing and encryption, callback's onSuccess will contain the resulting output bytes.
2013-05-28 09:10:36 -04:00
*
* @param inputBytes
2013-10-02 13:08:33 -04:00
* Byte array you want to sign and encrypt
2013-06-17 13:51:41 -04:00
* @param encryptionUserIds
* User Ids (emails) of recipients
2013-09-09 13:55:35 -04:00
* @param asciiArmor
2013-10-02 13:08:33 -04:00
* Encode result for ASCII (Radix-64, 33 percent overhead compared to binary)
* @param allowUserInteraction
* Allows the OpenPGP Provider to handle missing keys by showing activities
2013-05-28 17:42:45 -04:00
* @param callback
* Callback where to return results
2013-05-28 09:10:36 -04:00
*/
2013-10-02 13:08:33 -04:00
oneway void signAndEncrypt(in byte[] inputBytes, in String[] encryptionUserIds, in boolean asciiArmor,
in IOpenPgpCallback callback);
2013-05-28 09:10:36 -04:00
/**
2013-10-02 13:08:33 -04:00
* Decrypts and verifies given input bytes. This methods handles encrypted-only, signed-and-encrypted,
* and also signed-only inputBytes.
*
* After successful decryption/verification, callback's onSuccess will contain the resulting output bytes.
* The signatureResult in onSuccess is only non-null if signed-and-encrypted or signed-only inputBytes were given.
2013-05-28 09:10:36 -04:00
*
* @param inputBytes
* Byte array you want to decrypt and verify
* @param allowUserInteraction
* Allows the OpenPGP Provider to handle missing keys by showing activities
2013-05-28 17:42:45 -04:00
* @param callback
* Callback where to return results
2013-05-28 09:10:36 -04:00
*/
2013-10-02 13:08:33 -04:00
oneway void decryptAndVerify(in byte[] inputBytes, in IOpenPgpCallback callback);
boolean isKeyAvailable(in String[] userIds);
2013-07-01 17:19:53 -04:00
2013-05-28 09:10:36 -04:00
}