All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.klaytn.caver.wallet.keyring.AbstractKeyring Maven / Gradle / Ivy

There is a newer version: 1.12.2-android
Show newest version
/*
 * Copyright 2020 The caver-java Authors
 *
 * 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.
 */

package com.klaytn.caver.wallet.keyring;

import com.klaytn.caver.utils.Utils;
import org.web3j.crypto.CipherException;
import org.web3j.utils.Numeric;

import java.util.List;

/**
 * Represents an abstract class defines the field and method of Keyring.
 * @see SingleKeyring
 * @see MultipleKeyring
 * @see RoleBasedKeyring
 */
abstract public class AbstractKeyring {
    /**
     * The keyring address.
     */
    String address;

    /**
     * Create a AbstractKeyring instance.
     * @param address
     */
    public AbstractKeyring(String address) {
        this.address = address;
    }

    /**
     * Signs a transaction hash with all private keys in specific role group and return signature list.
     * @param txHash The hash of transaction.
     * @param chainId The chainId specific to the network.
     * @param role A number indicating the role of the key.
     * @return List
     */
    abstract public List sign(String txHash, int chainId, int role);

    /**
     * Signs a transaction hash with a private key in specific role group and return signature.
     * @param txHash The hash of transaction.
     * @param chainId The chainId specific to the network.
     * @param role A number indicating the role of the key.
     * @param index The index of the key to be used in the specific role group.
     * @return SignatureData
     */
    abstract public SignatureData sign(String txHash, int chainId, int role, int index);

    /**
     * Signs a transaction hash with all private keys in specific role group and returns signature list.
     * @param txHash The hash of transaction.
     * @param role A number indicating the role of the key.
     * @return List<SignatureData>
     */
    abstract public List ecsign(String txHash, int role);

    /**
     * Signs a transaction hash with a private key in specific role group and returns signature
     * @param txHash The hash transaction
     * @param role A number indicating the role of the key.
     * @param index The index of the key to be used in the specific role group.
     * @return SignatureData
     */
    abstract public SignatureData ecsign(String txHash, int role, int index);

    /**
     * Signs a hashed data with all private keys in specific role group and return MessageSigned instance.
     * @param message The data string to sign
     * @param role A number indicating the role of the key
     * @return MessageSigned
     */
    abstract public MessageSigned signMessage(String message, int role);

    /**
     * Signs a hashed data with a private key in specific role group and return MessageSigned instance.
     * @param message The data string to sign
     * @param role A number indicating the role of the key
     * @param index The index of the key to be used in the specific role group
     * @return MessageSigned
     */
    abstract public MessageSigned signMessage(String message, int role, int index);

    /**
     * Encrypts a keyring and returns a KeyStore.(according to KeyStore V4)
     * @param password The password to be used for encryption. The encrypted in KeyStore can be decrypted with this password.
     * @param options  The options to use when encrypt a keyring.
     * @return KeyStore
     */
    abstract public KeyStore encrypt(String password, KeyStoreOption options) throws CipherException;

    /**
     * Returns a copied keyring instance.
     * @return Keyring
     */
    abstract public AbstractKeyring copy();

    /**
     * Signs a transaction hash with all keys in specific role group and return signature list.
     * @param txHash The hash of transaction.
     * @param chainId The chainId specific to the network.
     * @param role A number indicating the role of the key.
     * @return List
     */
    public List sign(String txHash, String chainId, int role) {
        if(!Utils.isNumber(chainId)) throw new IllegalArgumentException("Invalid chainId : " + chainId);

        return sign(txHash, Numeric.toBigInt(chainId).intValue(), role);
    }

    /**
     * Signs a transaction hash with key in specific role group and return signature.
     * @param txHash The hash of transaction.
     * @param chainId The chainId specific to the network.
     * @param role A number indicating the role of the key.
     * @param index The index of the key to be used in the specific role group.
     * @return SignatureData
     */
    public SignatureData sign(String txHash, String chainId, int role, int index) {
        if(!Utils.isNumber(chainId)) throw new IllegalArgumentException("Invalid chainId : " + chainId);

        return sign(txHash, Numeric.toBigInt(chainId).intValue(), role, index);
    }

    /**
     * Encrypts a keyring and returns a KeyStore.(according to KeyStore V4)
     * This function automatically operates SCRYPT KDF Function
     * @param password The password to be used for encryption. The encrypted in KeyStore can be decrypted with this password.
     * @return KeyStore
     */
    public KeyStore encrypt(String password) throws CipherException {
        KeyStoreOption options = KeyStoreOption.getDefaultOptionWithKDF(KeyStore.ScryptKdfParams.getName());
        return this.encrypt(password, options);
    }

    /**
     * Encrypts a keyring and returns a KeyStore.(according to KeyStore V3)
     * @param password The password to be used for encryption. The encrypted in KeyStore can be decrypted with this password.
     * @param options The options to use when encrypt a keyring.
     * @return KeyStore
     */
    public KeyStore encryptV3(String password, KeyStoreOption options) throws CipherException {
        throw new RuntimeException("Not supported for this class. Use 'encrypt()' function");
    }

    /**
     * Encrypts a keyring and returns a KeyStore.(according to KeyStore V3)
     * @param password The password to be used for encryption. The encrypted in KeyStore can be decrypted with this password.
     * @return KeyStore
     */
    public KeyStore encryptV3(String password) throws CipherException {
        throw new RuntimeException("Not supported for this class. Use 'encrypt()' function");
    }

    /**
     * Returns a KlaytnWalletKey format
     * @return String
     */
    public String getKlaytnWalletKey() {
        throw new RuntimeException("Not supported for this class.");
    }

    /**
     * Returns true if keyring has decoupled key.
     * @return boolean
     */
    public boolean isDecoupled() {
        return true;
    }

    boolean validatedIndexWithKeys(int index, int keyLength) {
        if(index < 0) throw new IllegalArgumentException("Invalid index : index cannot be negative");
        if(index >= keyLength) throw new IllegalArgumentException("Invalid index : index must be less than the length of the key.");

        return true;
    }

    public String getAddress() {
        return address;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy