Skip to main content

SimpleKeypair

Struct SimpleKeypair 

Source
pub struct SimpleKeypair { /* private fields */ }
Available on (crate features ed25519 or secp256r1 or secp256k1 or zklogin) and (crate features ed25519 or secp256r1 or secp256k1) only.

Implementations§

Source§

impl SimpleKeypair

Source

pub fn scheme(&self) -> SignatureScheme

Source

pub fn verifying_key(&self) -> SimpleVerifiyingKey

Source

pub fn public_key(&self) -> MultisigMemberPublicKey

Source

pub fn from_der(bytes: &[u8]) -> Result<Self, SignatureError>

Available on crate feature pem only.

Deserialize PKCS#8 private key from ASN.1 DER-encoded data (binary format).

Source

pub fn to_der(&self) -> Result<Vec<u8>, SignatureError>

Available on crate feature pem only.

Serialize this private key as DER-encoded PKCS#8

Source

pub fn from_pem(s: &str) -> Result<Self, SignatureError>

Available on crate feature pem only.

Deserialize PKCS#8-encoded private key from PEM.

Source

pub fn to_pem(&self) -> Result<String, SignatureError>

Available on crate feature pem only.

Serialize this private key as DER-encoded PKCS#8

Source

pub fn from_suiprivkey(s: &str) -> Result<Self, SignatureError>

Available on crate feature bech32 only.

Decode a Bech32 suiprivkey string produced by the Sui CLI.

The leading flag byte selects the scheme. Only the simple schemes (Ed25519, Secp256k1, Secp256r1) are accepted, matching the upstream sui-types parser.

Source

pub fn to_suiprivkey(&self) -> Result<String, SignatureError>

Available on crate feature bech32 only.

Encode this private key as a Bech32 suiprivkey string.

Source

pub fn from_base64(s: &str) -> Result<Self, SignatureError>

Decode a Base64 flag || private_key string, the legacy keystore format used for entries of the Sui CLI’s sui.keystore file.

The leading flag byte selects the scheme. Only the simple schemes (Ed25519, Secp256k1, Secp256r1) are accepted, matching the upstream sui-types parser.

Source

pub fn to_base64(&self) -> String

Encode this private key as a Base64 flag || private_key string, the legacy keystore format used for entries of the Sui CLI’s sui.keystore file.

Trait Implementations§

Source§

impl Clone for SimpleKeypair

Source§

fn clone(&self) -> SimpleKeypair

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for SimpleKeypair

Source§

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

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

impl From<Ed25519PrivateKey> for SimpleKeypair

Available on crate feature ed25519 only.
Source§

fn from(private_key: Ed25519PrivateKey) -> Self

Converts to this type from the input type.
Source§

impl From<Secp256k1PrivateKey> for SimpleKeypair

Available on crate feature secp256k1 only.
Source§

fn from(private_key: Secp256k1PrivateKey) -> Self

Converts to this type from the input type.
Source§

impl From<Secp256r1PrivateKey> for SimpleKeypair

Available on crate feature secp256r1 only.
Source§

fn from(private_key: Secp256r1PrivateKey) -> Self

Converts to this type from the input type.
Source§

impl Signer<SimpleSignature> for SimpleKeypair

Source§

fn try_sign(&self, message: &[u8]) -> Result<SimpleSignature, SignatureError>

Attempt to sign the given message, returning a digital signature on success, or an error if something went wrong. Read more
§

fn sign(&self, msg: &[u8]) -> S

Sign the given message and return a digital signature
Source§

impl Signer<UserSignature> for SimpleKeypair

Source§

fn try_sign(&self, msg: &[u8]) -> Result<UserSignature, SignatureError>

Attempt to sign the given message, returning a digital signature on success, or an error if something went wrong. Read more
§

fn sign(&self, msg: &[u8]) -> S

Sign the given message and return a digital signature

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
§

impl<U> As for U

§

fn as_<T>(self) -> T
where T: CastFrom<U>,

Casts self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
§

impl<S, T> SignerMut<S> for T
where T: Signer<S>,

§

fn try_sign(&mut self, msg: &[u8]) -> Result<S, Error>

Attempt to sign the given message, updating the state, and returning a digital signature on success, or an error if something went wrong. Read more
§

fn sign(&mut self, msg: &[u8]) -> S

Sign the given message, update the state, and return a digital signature.
Source§

impl<T> SuiSigner for T
where T: Signer<UserSignature>,

Source§

fn sign_transaction( &self, transaction: &Transaction, ) -> Result<UserSignature, Error>

Source§

fn sign_personal_message( &self, message: &PersonalMessage<'_>, ) -> Result<UserSignature, Error>

Source§

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

Source§

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>,

Source§

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>,

Source§

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

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,