Skip to main content

ParsedPrivateKey

Enum ParsedPrivateKey 

Source
pub enum ParsedPrivateKey {
    P256 {
        scalar: [u8; 32],
        public_sec1: Option<Vec<u8>>,
    },
    P384 {
        scalar: [u8; 48],
        public_sec1: Option<Vec<u8>>,
    },
    RsaPkcs1(Vec<u8>),
    Ed25519(Vec<u8>),
}
Expand description

解析后的私钥内容(按算法分派给 crate::sign 各类型)。

Variants§

§

P256

P-256:32 字节标量与(可选携带的)未压缩 SEC1 公钥点。

Fields

§scalar: [u8; 32]

SEC1 privateKey OCTET STRING 内的标量。

§public_sec1: Option<Vec<u8>>

未压缩 SEC1 公钥点(0x04||X||Y),SEC1 结构中可选携带。

§

P384

P-384:48 字节标量与(可选携带的)未压缩 SEC1 公钥点。

Fields

§scalar: [u8; 48]

SEC1 privateKey OCTET STRING 内的标量。

§public_sec1: Option<Vec<u8>>

未压缩 SEC1 公钥点。

§

RsaPkcs1(Vec<u8>)

RSA PKCS#1 私钥(DER 内容,供 sign::rsa 二次解析)。

§

Ed25519(Vec<u8>)

Ed25519:32 字节种子。

Trait Implementations§

Source§

impl Debug for ParsedPrivateKey

Source§

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

Formats the value using the given formatter. Read more

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.