diff options
| author | Markus Doits <markus.doits@gmail.com> | 2011-01-09 19:16:54 +0000 | 
|---|---|---|
| committer | Markus Doits <markus.doits@gmail.com> | 2011-01-09 19:16:54 +0000 | 
| commit | def11ad18f0394adaf61c0cf53647f5583e5b8b6 (patch) | |
| tree | 87d66291ee509489d059c35ef39166bfa411c51f /src | |
| parent | c84c449035db1498414486b13e63e590ddf49a58 (diff) | |
| download | open-keychain-def11ad18f0394adaf61c0cf53647f5583e5b8b6.tar.gz open-keychain-def11ad18f0394adaf61c0cf53647f5583e5b8b6.tar.bz2 open-keychain-def11ad18f0394adaf61c0cf53647f5583e5b8b6.zip | |
Document new args in AIDL
Diffstat (limited to 'src')
| -rw-r--r-- | src/org/thialfihar/android/apg/IApgService.aidl | 11 | 
1 files changed, 8 insertions, 3 deletions
| diff --git a/src/org/thialfihar/android/apg/IApgService.aidl b/src/org/thialfihar/android/apg/IApgService.aidl index f31265f8e..2c7ffb875 100644 --- a/src/org/thialfihar/android/apg/IApgService.aidl +++ b/src/org/thialfihar/android/apg/IApgService.aidl @@ -14,11 +14,16 @@ interface IApgService {       * Bundle params:       *   (optional/required) TYPE "STRING KEY" = EXPLANATION       * -     *   (required) String "MSG"      = Message to encrypt -     *   (required) String "SYM_KEY"  = Symmetric key to use +     *   (required) String  "MSG"             = Message to encrypt +     *   (required) String  "SYM_KEY"         = Symmetric key to use +     *   (optional) int     "ENCRYPTION_ALGO" = Encryption Algorithm +     *   (optional) int     "HASH_ALGO"       = Hash Algorithm +     *   (optional) Boolean "ARMORED"         = Armor output +     *   (optional) Boolean "FORCE_V3_SIG"    = Force V3 Signatures +     *   (optional) int     "COMPRESSION"     = Compression to use       *       * Bundle return_vals (in addition to the ERRORS/WARNINGS above): -     *   String "RESULT"              = Encrypted MSG +     *              String  "RESULT"          = Encrypted MSG       */      boolean encrypt_with_passphrase(in Bundle params, out Bundle return_vals); | 
