Struct openssl::ocsp::OcspResponse

source ·
pub struct OcspResponse(/* private fields */);

Implementations§

source§

impl OcspResponse

source

pub fn create( status: OcspResponseStatus, body: Option<&OcspBasicResponseRef> ) -> Result<OcspResponse, ErrorStack>

Creates an OCSP response from the status and optional body.

A body should only be provided if status is RESPONSE_STATUS_SUCCESSFUL.

This corresponds to OCSP_response_create.

source

pub fn from_der(der: &[u8]) -> Result<OcspResponse, ErrorStack>

Deserializes a DER-encoded OCSP response.

This corresponds to d2i_OCSP_RESPONSE.

Methods from Deref<Target = OcspResponseRef>§

source

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

Serializes the response to its standard DER encoding.

This corresponds to i2d_OCSP_RESPONSE.

source

pub fn status(&self) -> OcspResponseStatus

Returns the status of the response.

This corresponds to OCSP_response_status.

source

pub fn basic(&self) -> Result<OcspBasicResponse, ErrorStack>

Returns the basic response.

This will only succeed if status() returns RESPONSE_STATUS_SUCCESSFUL.

This corresponds to OCSP_response_get1_basic.

Trait Implementations§

source§

impl AsRef<OcspResponseRef> for OcspResponse

source§

fn as_ref(&self) -> &OcspResponseRef

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Borrow<OcspResponseRef> for OcspResponse

source§

fn borrow(&self) -> &OcspResponseRef

Immutably borrows from an owned value. Read more
source§

impl Deref for OcspResponse

§

type Target = OcspResponseRef

The resulting type after dereferencing.
source§

fn deref(&self) -> &OcspResponseRef

Dereferences the value.
source§

impl DerefMut for OcspResponse

source§

fn deref_mut(&mut self) -> &mut OcspResponseRef

Mutably dereferences the value.
source§

impl Drop for OcspResponse

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl ForeignType for OcspResponse

§

type CType = OCSP_RESPONSE

The raw C type.
§

type Ref = OcspResponseRef

The type representing a reference to this type.
source§

unsafe fn from_ptr(ptr: *mut OCSP_RESPONSE) -> OcspResponse

Constructs an instance of this type from its raw type.
source§

fn as_ptr(&self) -> *mut OCSP_RESPONSE

Returns a raw pointer to the wrapped value.
source§

impl Send for OcspResponse

source§

impl Sync for OcspResponse

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

§

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.