Struct cfxstore::SafeAccount

source ·
pub struct SafeAccount {
    pub id: [u8; 16],
    pub version: Version,
    pub address: Address,
    pub crypto: Crypto,
    pub filename: Option<String>,
    pub name: String,
    pub meta: String,
}
Expand description

Account representation.

Fields§

§id: [u8; 16]

Account ID

§version: Version

Account version

§address: Address

Account address

§crypto: Crypto

Account private key derivation definition.

§filename: Option<String>

Account filename

§name: String

Account name

§meta: String

Account metadata

Implementations§

source§

impl SafeAccount

source

pub fn create( keypair: &KeyPair, id: [u8; 16], password: &Password, iterations: u32, name: String, meta: String ) -> Result<Self, Error>

Create a new account

source

pub fn from_file( json: KeyFile, filename: Option<String>, password: &Option<Password> ) -> Result<Self, Error>

Create a new SafeAccount from the given json; if it was read from a file, the filename should be Some name. If it is as yet anonymous, then it can be left None. In case password is provided, we will attempt to read the secret from the keyfile and derive the address from it instead of reading it directly. Providing password is required for json::KeyFiles with no address.

source

pub fn from_vault_file( password: &Password, json: VaultKeyFile, filename: Option<String> ) -> Result<Self, Error>

Create a new SafeAccount from the given vault json; if it was read from a file, the filename should be Some name. If it is as yet anonymous, then it can be left None.

source

pub fn into_vault_file( self, iterations: u32, password: &Password ) -> Result<VaultKeyFile, Error>

Create a new VaultKeyFile from the given self

source

pub fn sign( &self, password: &Password, message: &Message ) -> Result<Signature, Error>

Sign a message.

source

pub fn decrypt( &self, password: &Password, shared_mac: &[u8], message: &[u8] ) -> Result<Vec<u8>, Error>

Decrypt a message.

source

pub fn agree( &self, password: &Password, other: &Public ) -> Result<Secret, Error>

Agree on shared key.

source

pub fn public(&self, password: &Password) -> Result<Public, Error>

Derive public key.

source

pub fn change_password( &self, old_password: &Password, new_password: &Password, iterations: u32 ) -> Result<Self, Error>

Change account’s password.

source

pub fn check_password(&self, password: &Password) -> bool

Check if password matches the account.

Trait Implementations§

source§

impl Clone for SafeAccount

source§

fn clone(&self) -> SafeAccount

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SafeAccount

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for SafeAccount

source§

fn eq(&self, other: &SafeAccount) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for SafeAccount

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V