summaryrefslogtreecommitdiffstats
path: root/src/misc/tim
diff options
context:
space:
mode:
authorBaruch Sterin <baruchs@gmail.com>2012-01-21 18:38:09 -0800
committerBaruch Sterin <baruchs@gmail.com>2012-01-21 18:38:09 -0800
commit20d05d39fc65c1f4da69ba4a23f93be052b2d62a (patch)
tree599153eedbb800997fcab7a07af44f7cc6b94d32 /src/misc/tim
parent88dd9d619f79b869466254a4f6bd1816c7d7bdf6 (diff)
downloadabc-20d05d39fc65c1f4da69ba4a23f93be052b2d62a.tar.gz
abc-20d05d39fc65c1f4da69ba4a23f93be052b2d62a.tar.bz2
abc-20d05d39fc65c1f4da69ba4a23f93be052b2d62a.zip
minor changes to Makefile: (1) use CC instead of gcc to compile arch_flags, and (2) make sure arch_flags is cleaned in make clean
Diffstat (limited to 'src/misc/tim')
0 files changed, 0 insertions, 0 deletions
ref='#n59'>59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
package org.sufficientlysecure.keychain.pgp;

import android.net.Uri;
import android.os.Parcel;
import android.os.Parcelable;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Date;
import java.util.List;

/** This parcel stores the input of one or more PgpSignEncrypt operations.
 * All operations will use the same general paramters, differing only in
 * input and output. Each input/output set depends on the paramters:
 *
 * - Each input uri is individually encrypted/signed
 * - If a byte array is supplied, it is treated as an input before uris are processed
 * - The number of output uris must match the number of input uris, plus one more
 *   if there is a byte array present.
 * - Once the output uris are empty, there must be exactly one input (uri xor bytes)
 *   left, which will be returned in a byte array as part of the result parcel.
 *
 */
public class SignEncryptParcel extends PgpSignEncryptInput implements Parcelable {

    public ArrayList<Uri> mInputUris = new ArrayList<>();
    public ArrayList<Uri> mOutputUris = new ArrayList<>();
    public byte[] mBytes;

    public SignEncryptParcel() {