aws_lc_rs::ptr

Type Alias LcPtr

Source
pub(crate) type LcPtr<T> = ManagedPointer<*mut T>;

Aliased Type§

struct LcPtr<T> {
    pointer: *mut T,
}

Fields§

§pointer: *mut T

Implementations

Source§

impl ManagedPointer<*mut EVP_PKEY>

Source

pub(crate) fn validate_as_ed25519(&self) -> Result<(), KeyRejected>

Source

pub(crate) fn id(&self) -> i32

Source

pub(crate) fn key_size_bytes(&self) -> usize

Source

pub(crate) fn key_size_bits(&self) -> usize

Source

pub(crate) fn signature_size_bytes(&self) -> usize

Source

pub(crate) fn get_ec_key(&self) -> Result<ConstPointer<EC_KEY>, KeyRejected>

Source

pub(crate) fn get_rsa(&self) -> Result<ConstPointer<RSA>, KeyRejected>

Source

pub(crate) fn marshal_rfc5280_public_key(&self) -> Result<Vec<u8>, Unspecified>

Source

pub(crate) fn parse_rfc5280_public_key( bytes: &[u8], evp_pkey_type: c_int, ) -> Result<Self, KeyRejected>

Source

pub(crate) fn marshal_rfc5208_private_key( &self, version: Version, ) -> Result<Vec<u8>, Unspecified>

Source

pub(crate) fn parse_rfc5208_private_key( bytes: &[u8], evp_pkey_type: c_int, ) -> Result<Self, KeyRejected>

Source

pub(crate) fn create_EVP_PKEY_CTX( &self, ) -> Result<ManagedPointer<*mut EVP_PKEY_CTX>, ()>

Source

pub(crate) fn marshal_raw_private_key(&self) -> Result<Vec<u8>, Unspecified>

Source

pub(crate) fn marshal_raw_private_to_buffer( &self, buffer: &mut [u8], ) -> Result<usize, Unspecified>

Source

pub(crate) fn marshal_raw_public_key(&self) -> Result<Vec<u8>, Unspecified>

Source

pub(crate) fn marshal_raw_public_to_buffer( &self, buffer: &mut [u8], ) -> Result<usize, Unspecified>

Source

pub(crate) fn parse_raw_private_key( bytes: &[u8], evp_pkey_type: c_int, ) -> Result<Self, KeyRejected>

Source

pub(crate) fn parse_raw_public_key( bytes: &[u8], evp_pkey_type: c_int, ) -> Result<Self, KeyRejected>

Source

pub(crate) fn sign<F>( &self, message: &[u8], digest: Option<&'static Algorithm>, padding_fn: Option<F>, ) -> Result<Box<[u8]>, Unspecified>

Source

pub(crate) fn verify<F>( &self, msg: &[u8], digest: Option<&'static Algorithm>, padding_fn: Option<F>, signature: &[u8], ) -> Result<(), Unspecified>

Source

pub(crate) fn generate<F>( pkey_type: c_int, params_fn: Option<F>, ) -> Result<Self, Unspecified>

Source§

impl<P: Pointer> ManagedPointer<P>

Source

pub fn new<T: IntoPointer<P>>(value: T) -> Result<Self, ()>

Source

pub unsafe fn as_slice(&self, len: usize) -> &[P::T]

Source§

impl<P: Pointer> ManagedPointer<P>

Source

pub fn as_const(&self) -> ConstPointer<P::T>

Source

pub unsafe fn as_mut_unsafe(&self) -> MutPointer<P::T>

Source

pub fn as_mut(&mut self) -> MutPointer<P::T>

Trait Implementations

Source§

impl Clone for ManagedPointer<*mut EVP_PKEY>

Source§

fn clone(&self) -> Self

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<P: Debug + Pointer> Debug for ManagedPointer<P>

Source§

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

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

impl<P: Pointer> Drop for ManagedPointer<P>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl<P: Pointer> From<DetachablePointer<P>> for ManagedPointer<P>

Source§

fn from(dptr: DetachablePointer<P>) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for ManagedPointer<*mut EVP_PKEY>

Source§

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

Only compares params and public key

1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryFrom<&[u8]> for ManagedPointer<*mut BIGNUM>

Source§

type Error = ()

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

fn try_from(bytes: &[u8]) -> Result<Self, Self::Error>

Performs the conversion.