Skip to content

aea.crypto.helpers

Module wrapping the helpers of public and private key cryptography.

try_validate_private_key_path

try_validate_private_key_path(ledger_id: str, private_key_path: str, password: Optional[str] = None) -> None

Try validate a private key path.

Arguments:

  • ledger_id: one of 'fetchai', 'ethereum'
  • private_key_path: the path to the private key.
  • password: the password to encrypt/decrypt the private key. :raises: ValueError if the identifier is invalid.

create_private_key

create_private_key(ledger_id: str, private_key_file: str, password: Optional[str] = None) -> None

Create a private key for the specified ledger identifier.

Arguments:

  • ledger_id: the ledger identifier.
  • private_key_file: the private key file.
  • password: the password to encrypt/decrypt the private key. :raises: ValueError if the identifier is invalid.

try_generate_testnet_wealth

try_generate_testnet_wealth(identifier: str, address: str, url: Optional[str] = None, _sync: bool = True) -> None

Try generate wealth on a testnet.

Arguments:

  • identifier: the identifier of the ledger
  • address: the address to check for
  • url: the url
  • _sync: whether to wait to sync or not; currently unused

private_key_verify

private_key_verify(aea_conf: AgentConfig, aea_project_path: Path, password: Optional[str] = None) -> None

Check key.

Arguments:

  • aea_conf: AgentConfig
  • aea_project_path: Path, where project placed.
  • password: the password to encrypt/decrypt the private key.

make_certificate

make_certificate(ledger_id: str, crypto_private_key_path: str, message: bytes, output_path: str, password: Optional[str] = None) -> str

Create certificate.

Arguments:

  • ledger_id: the ledger id
  • crypto_private_key_path: the path to the private key.
  • message: the message to be signed.
  • output_path: the location where to save the certificate.
  • password: the password to encrypt/decrypt the private keys.

Returns:

the signature/certificate

get_wallet_from_agent_config

get_wallet_from_agent_config(agent_config: AgentConfig, password: Optional[str] = None) -> Wallet

Get wallet from agent_cofig provided.

Arguments:

  • agent_config: the agent configuration object
  • password: the password to encrypt/decrypt the private keys.

Returns:

wallet

DecryptError Objects

class DecryptError(ValueError)

Error on bytes decryption with password.

__init__

 | __init__(msg: Optional[str] = None) -> None

Init exception.

KeyIsIncorrect Objects

class KeyIsIncorrect(ValueError)

Error decoding hex string to bytes for private key.

hex_to_bytes_for_key

hex_to_bytes_for_key(data: str) -> bytes

Convert hex string to bytes with error handling.

Back to top