Struct openssl::ocsp::OcspResponse
source · [−]pub struct OcspResponse(_);
Implementations
sourceimpl OcspResponse
impl OcspResponse
sourcepub fn create(
status: OcspResponseStatus,
body: Option<&OcspBasicResponseRef>
) -> Result<OcspResponse, ErrorStack>
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
.
sourcepub fn from_der(der: &[u8]) -> Result<OcspResponse, ErrorStack>
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>
sourcepub fn to_der(&self) -> Result<Vec<u8>, ErrorStack>
pub fn to_der(&self) -> Result<Vec<u8>, ErrorStack>
Serializes the response to its standard DER encoding.
This corresponds to i2d_OCSP_RESPONSE
.
sourcepub fn status(&self) -> OcspResponseStatus
pub fn status(&self) -> OcspResponseStatus
Returns the status of the response.
sourcepub fn basic(&self) -> Result<OcspBasicResponse, ErrorStack>
pub fn basic(&self) -> Result<OcspBasicResponse, ErrorStack>
Returns the basic response.
This will only succeed if status()
returns RESPONSE_STATUS_SUCCESSFUL
.
Trait Implementations
sourceimpl AsRef<OcspResponseRef> for OcspResponse
impl AsRef<OcspResponseRef> for OcspResponse
sourcefn as_ref(&self) -> &OcspResponseRef
fn as_ref(&self) -> &OcspResponseRef
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl Borrow<OcspResponseRef> for OcspResponse
impl Borrow<OcspResponseRef> for OcspResponse
sourcefn borrow(&self) -> &OcspResponseRef
fn borrow(&self) -> &OcspResponseRef
Immutably borrows from an owned value. Read more
sourceimpl Deref for OcspResponse
impl Deref for OcspResponse
type Target = OcspResponseRef
type Target = OcspResponseRef
The resulting type after dereferencing.
sourcefn deref(&self) -> &OcspResponseRef
fn deref(&self) -> &OcspResponseRef
Dereferences the value.
sourceimpl DerefMut for OcspResponse
impl DerefMut for OcspResponse
sourcefn deref_mut(&mut self) -> &mut OcspResponseRef
fn deref_mut(&mut self) -> &mut OcspResponseRef
Mutably dereferences the value.
sourceimpl Drop for OcspResponse
impl Drop for OcspResponse
sourceimpl ForeignType for OcspResponse
impl ForeignType for OcspResponse
type CType = OCSP_RESPONSE
type CType = OCSP_RESPONSE
The raw C type.
type Ref = OcspResponseRef
type Ref = OcspResponseRef
The type representing a reference to this type.
sourceunsafe fn from_ptr(ptr: *mut OCSP_RESPONSE) -> OcspResponse
unsafe fn from_ptr(ptr: *mut OCSP_RESPONSE) -> OcspResponse
Constructs an instance of this type from its raw type.
sourcefn as_ptr(&self) -> *mut OCSP_RESPONSE
fn as_ptr(&self) -> *mut OCSP_RESPONSE
Returns a raw pointer to the wrapped value.
impl Send for OcspResponse
impl Sync for OcspResponse
Auto Trait Implementations
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more