Struct sn_api::SafeAuthenticator[][src]

pub struct SafeAuthenticator { /* fields omitted */ }

Implementations

Create Safe

Creates a new Safe on the Network. Returns an error if a Safe exists or if there was some problem during the creation process. If the Safe is successfully created it keeps the logged in session (discarding a previous session)

Note: This does not perform any strength checks on the strings used to create the Safe.

Example
use sn_api::SafeAuthenticator;
let mut safe_auth = SafeAuthenticator::new(None);
let my_secret = "mysecretstring";
let my_password = "mypassword";
let acc_created = safe_auth.create(sk, my_secret, my_password).await;
match acc_created {
   Ok(()) => assert!(true), // This should pass
   Err(_) => assert!(false)
}
Error Example

If a Safe with same passphrase already exists, the function will return an error:

use sn_api::{SafeAuthenticator, Error};
let mut safe_auth = SafeAuthenticator::new(None);
/// Using an already existing Safe's passphrase and password:
let my_secret = "mysecretstring";
let my_password = "mypassword";
let acc_not_created = safe_auth.create(sk, my_secret, my_password).await;
match acc_not_created {
   Ok(_) => assert!(false), // This should not pass
   Err(Error::AuthError(message)) => {
        assert!(message.contains("Failed to create a Safe"));
   }
   Err(_) => assert!(false), // This should not pass
}
Unlock

Unlock a Safe already created on the network using the Authenticator daemon.

Example
use sn_api::SafeAuthenticator;
let mut safe_auth = SafeAuthenticator::new(None);
/// Using an already existing Safe's passphrase and password:
let my_secret = "mysecretstring";
let my_password = "mypassword";
let logged_in = safe_auth.unlock(my_secret, my_password).await;
match logged_in {
   Ok(()) => assert!(true), // This should pass
   Err(_) => assert!(false)
}
Error Example

If the Safe does not exist, the function will return an appropriate error:

 use sn_api::{SafeAuthenticator, Error};
 let mut safe_auth = SafeAuthenticator::new(None);
 let not_logged_in = safe_auth.unlock("non", "existant").await;
 match not_logged_in {
    Ok(()) => assert!(false), // This should not pass
    Err(Error::AuthError(message)) => {
         assert!(message.contains("Failed to log in"));
    }
    Err(_) => assert!(false), // This should not pass
 }

Decode requests and trigger application authorisation against the current client

Authenticate an app request.

First, this function searches for an app info in the Safe. If the app is found, then the AuthGranted struct is returned based on that information. If the app is not found in the Safe, then it will be authenticated.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Set the foreground color generically Read more

Set the background color generically. Read more

Change the foreground color to black

Change the foreground color to black

Change the foreground color to red

Change the foreground color to red

Change the foreground color to green

Change the foreground color to green

Change the foreground color to yellow

Change the foreground color to yellow

Change the foreground color to blue

Change the foreground color to blue

Change the foreground color to magenta

Change the foreground color to magenta

Change the foreground color to purple

Change the foreground color to purple

Change the foreground color to cyan

Change the foreground color to cyan

Change the foreground color to white

Change the foreground color to white

Change the foreground color to bright black

Change the foreground color to bright black

Change the foreground color to bright red

Change the foreground color to bright red

Change the foreground color to bright green

Change the foreground color to bright green

Change the foreground color to bright yellow

Change the foreground color to bright yellow

Change the foreground color to bright blue

Change the foreground color to bright blue

Change the foreground color to bright magenta

Change the foreground color to bright magenta

Change the foreground color to bright purple

Change the foreground color to bright purple

Change the foreground color to bright cyan

Change the foreground color to bright cyan

Change the foreground color to bright white

Change the foreground color to bright white

Make the text bold

Make the text dim

Make the text italicized

Make the text italicized

Make the text blink

Make the text blink (but fast!)

Swap the foreground and background colors

Hide the text

Cross out the text

Set the foreground color at runtime. Only use if you do not know which color will be used at compile-time. If the color is constant, use either OwoColorize::fg or a color-specific method, such as OwoColorize::green, Read more

Set the background color at runtime. Only use if you do not know what color to use at compile-time. If the color is constant, use either OwoColorize::bg or a color-specific method, such as OwoColorize::on_yellow, Read more

Sets the foreground color to an RGB value.

Sets the background color to an RGB value.

Apply a runtime-determined style

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more