Search in sources :

Example 1 with RequestCreateNewKeyGroup

use of im.actor.core.api.rpc.RequestCreateNewKeyGroup in project actor-platform by actorapp.

the class KeyManagerActor method preStart.

@Override
public void preStart() {
    Log.d(TAG, "Starting KeyManager...");
    // 
    // Initialization key storage
    // 
    encryptionKeysStorage = Storage.createKeyValue("encryption_keys");
    // 
    // Initialization own private keys
    // 
    ownKeys = null;
    byte[] ownKeysStorage = encryptionKeysStorage.loadItem(0);
    if (ownKeysStorage != null) {
        try {
            ownKeys = new PrivateKeyStorage(ownKeysStorage);
            // If we need re-save key storage
            if (ownKeys.isWasRegenerated()) {
                encryptionKeysStorage.addOrUpdateItem(0, ownKeys.toByteArray());
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    if (ownKeys == null) {
        Curve25519KeyPair identityPrivate = Curve25519.keyGen(Crypto.randomBytes(64));
        Curve25519KeyPair key0 = Curve25519.keyGen(Crypto.randomBytes(64));
        ownKeys = new PrivateKeyStorage(0, new PrivateKey(RandomUtils.nextRid(), "curve25519", identityPrivate.getPrivateKey(), identityPrivate.getPublicKey()), new PrivateKey[] { new PrivateKey(RandomUtils.nextRid(), "curve25519", key0.getPrivateKey(), key0.getPublicKey()) }, new PrivateKey[0]);
        encryptionKeysStorage.addOrUpdateItem(0, ownKeys.toByteArray());
    }
    if (ownKeys.getKeyGroupId() == 0) {
        ApiEncryptionKey identityKey = ownKeys.getIdentityKey().toApiKey();
        ArrayList<ApiEncryptionKey> keys = ManagedList.of(ownKeys.getKeys()).map(PrivateKey.TO_API);
        ArrayList<ApiEncryptionKeySignature> signatures = ManagedList.of(ownKeys.getKeys()).map(PrivateKey.SIGN(ownKeys.getIdentityKey()));
        Log.d(TAG, "Creation of new key group");
        api(new RequestCreateNewKeyGroup(identityKey, Configuration.SUPPORTED, keys, signatures)).then(new Consumer<ResponseCreateNewKeyGroup>() {

            @Override
            public void apply(ResponseCreateNewKeyGroup response) {
                ownKeys = ownKeys.setGroupId(response.getKeyGroupId());
                encryptionKeysStorage.addOrUpdateItem(0, ownKeys.toByteArray());
                onMainKeysReady();
            }
        }).failure(new Consumer<Exception>() {

            @Override
            public void apply(Exception e) {
                Log.w(TAG, "Keys upload error");
                Log.e(TAG, e);
            // Just ignore
            }
        });
    } else {
        onMainKeysReady();
    }
}
Also used : RequestCreateNewKeyGroup(im.actor.core.api.rpc.RequestCreateNewKeyGroup) PrivateKeyStorage(im.actor.core.modules.encryption.entity.PrivateKeyStorage) PrivateKey(im.actor.core.modules.encryption.entity.PrivateKey) ResponseCreateNewKeyGroup(im.actor.core.api.rpc.ResponseCreateNewKeyGroup) IOException(java.io.IOException) IOException(java.io.IOException) Consumer(im.actor.runtime.function.Consumer) ApiEncryptionKeySignature(im.actor.core.api.ApiEncryptionKeySignature) Curve25519KeyPair(im.actor.runtime.crypto.Curve25519KeyPair) ApiEncryptionKey(im.actor.core.api.ApiEncryptionKey)

Aggregations

ApiEncryptionKey (im.actor.core.api.ApiEncryptionKey)1 ApiEncryptionKeySignature (im.actor.core.api.ApiEncryptionKeySignature)1 RequestCreateNewKeyGroup (im.actor.core.api.rpc.RequestCreateNewKeyGroup)1 ResponseCreateNewKeyGroup (im.actor.core.api.rpc.ResponseCreateNewKeyGroup)1 PrivateKey (im.actor.core.modules.encryption.entity.PrivateKey)1 PrivateKeyStorage (im.actor.core.modules.encryption.entity.PrivateKeyStorage)1 Curve25519KeyPair (im.actor.runtime.crypto.Curve25519KeyPair)1 Consumer (im.actor.runtime.function.Consumer)1 IOException (java.io.IOException)1