open-keychain/OpenPGP-Keychain/src/org/openintents/crypto/ICryptoService.aidl

82 lines
2.6 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-05-29 09:58:50 -04:00
package org.openintents.crypto;
2013-05-28 09:10:36 -04:00
2013-05-29 09:58:50 -04:00
import org.openintents.crypto.ICryptoCallback;
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.
*/
interface ICryptoService {
/**
* Encrypt
*
* @param inputBytes
* Byte array you want to encrypt
2013-05-28 17:42:45 -04:00
* @param encryptionUserIds
* User Ids (emails) of recipients
* @param callback
* Callback where to return results
2013-05-28 09:10:36 -04:00
*/
oneway void encrypt(in byte[] inputBytes, in String[] encryptionUserIds, in ICryptoCallback callback);
/**
2013-06-17 13:51:41 -04:00
* Sign
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 signatureUserId
* User Ids (email) of sender
* @param callback
* Callback where to return results
2013-05-28 09:10:36 -04:00
*/
2013-06-17 13:51:41 -04:00
oneway void sign(in byte[] inputBytes, String signatureUserId, in ICryptoCallback callback);
2013-05-28 09:10:36 -04:00
/**
2013-06-17 13:51:41 -04:00
* Encrypt and sign
2013-05-28 09:10:36 -04:00
*
* @param inputBytes
* Byte array you want to encrypt
2013-06-17 13:51:41 -04:00
* @param encryptionUserIds
* User Ids (emails) of recipients
2013-05-28 17:42:45 -04:00
* @param signatureUserId
* User Ids (email) of sender
* @param callback
* Callback where to return results
2013-05-28 09:10:36 -04:00
*/
2013-06-17 13:51:41 -04:00
oneway void encryptAndSign(in byte[] inputBytes, in String[] encryptionUserIds, String signatureUserId, in ICryptoCallback callback);
2013-05-28 09:10:36 -04: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 17:42:45 -04:00
* @param callback
* Callback where to return results
2013-05-28 09:10:36 -04:00
*/
2013-07-01 17:19:53 -04:00
oneway void decryptAndVerify(in byte[] inputBytes, in ICryptoCallback callback);
/**
* Opens setup using default parameters
*
*/
oneway void setup(boolean asciiArmor, boolean newKeyring, String newKeyringUserId);
2013-05-28 09:10:36 -04:00
}