aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/SaveKeyringParcel.java
blob: 3514ab2e53af2a4d89800910a3b86b078841aa12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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
package org.sufficientlysecure.keychain.service;

import android.os.Parcel;
import android.os.Parcelable;

import java.io.Serializable;
import java.util.HashMap;

/** This class is a a transferable representation for a collection of changes
 * to be done on a keyring.
 *
 * This class should include all types of operations supported in the backend.
 *
 * All changes are done in a differential manner. Besides the two key
 * identification attributes, all attributes may be null, which indicates no
 * change to the keyring. This is also the reason why boxed values are used
 * instead of primitives in the subclasses.
 *
 * Application of operations in the backend should be fail-fast, which means an
 * error in any included operation (for example revocation of a non-existent
 * subkey) will cause the operation as a whole to fail.
 */
public class SaveKeyringParcel implements Parcelable {

    // the master key id to be edited
    private final long mMasterKeyId;
    // the key fingerprint, for safety
    private final byte[] mFingerprint;

    public String newPassphrase;

    public String[] addUserIds;
    public SubkeyAdd[] addSubKeys;

    public HashMap<Long, SubkeyChange> changeSubKeys;
    public String changePrimaryUserId;

    public String[] revokeUserIds;
    public long[] revokeSubKeys;

    public SaveKeyringParcel(long masterKeyId, byte[] fingerprint) {
        mMasterKeyId = masterKeyId;
        mFingerprint = fingerprint;
    }

    // performance gain for using Parcelable here would probably be negligible,
    // use Serializable instead.
    public static class SubkeyAdd implements Serializable {
        public final int mAlgorithm;
        public final int mKeysize;
        public final int mFlags;
        public final Long mExpiry;
        public SubkeyAdd(int algorithm, int keysize, int flags, Long expiry) {
            mAlgorithm = algorithm;
            mKeysize = keysize;
            mFlags = flags;
            mExpiry = expiry;
        }
    }

    public static class SubkeyChange implements Serializable {
        public final long mKeyId;
        public final Integer mFlags;
        public final Long mExpiry;
        public SubkeyChange(long keyId, Integer flags, Long expiry) {
            mKeyId = keyId;
            mFlags = flags;
            mExpiry = expiry;
        }
    }

    public SaveKeyringParcel(Parcel source) {
        mMasterKeyId = source.readLong();
        mFingerprint = source.createByteArray();

        addUserIds = source.createStringArray();
        addSubKeys = (SubkeyAdd[]) source.readSerializable();

        changeSubKeys = (HashMap<Long,SubkeyChange>) source.readSerializable();
        changePrimaryUserId = source.readString();

        revokeUserIds = source.createStringArray();
        revokeSubKeys = source.createLongArray();
    }

    @Override
    public void writeToParcel(Parcel destination, int flags) {
        destination.writeLong(mMasterKeyId);
        destination.writeByteArray(mFingerprint);

        destination.writeStringArray(addUserIds);
        destination.writeSerializable(addSubKeys);

        destination.writeSerializable(changeSubKeys);
        destination.writeString(changePrimaryUserId);

        destination.writeStringArray(revokeUserIds);
        destination.writeLongArray(revokeSubKeys);
    }

    public static final Creator<SaveKeyringParcel> CREATOR = new Creator<SaveKeyringParcel>() {
        public SaveKeyringParcel createFromParcel(final Parcel source) {
            return new SaveKeyringParcel(source);
        }

        public SaveKeyringParcel[] newArray(final int size) {
            return new SaveKeyringParcel[size];
        }
    };

    @Override
    public int describeContents() {
        return 0;
    }

}