pub struct BasicOcspResponse {
pub tbs_response_data: ResponseData,
pub signature_algorithm: AlgorithmIdentifierOwned,
pub signature: BitString,
pub certs: Option<Vec<Certificate>>,
}Expand description
BasicOcspResponse structure as defined in RFC 6960 Section 4.2.1.
BasicOCSPResponse ::= SEQUENCE {
tbsResponseData ResponseData,
signatureAlgorithm AlgorithmIdentifier,
signature BIT STRING,
certs [0] EXPLICIT SEQUENCE OF Certificate OPTIONAL }Fields§
§tbs_response_data: ResponseData§signature_algorithm: AlgorithmIdentifierOwned§signature: BitString§certs: Option<Vec<Certificate>>Implementations§
Trait Implementations§
Source§impl AsResponseBytes for BasicOcspResponse
impl AsResponseBytes for BasicOcspResponse
Source§fn to_response_bytes(&self) -> Result<ResponseBytes, Error>
fn to_response_bytes(&self) -> Result<ResponseBytes, Error>
Encodes the response bytes of successful OCSP responses
Source§impl AssociatedOid for BasicOcspResponse
impl AssociatedOid for BasicOcspResponse
Source§const OID: ObjectIdentifier = ID_PKIX_OCSP_BASIC
const OID: ObjectIdentifier = ID_PKIX_OCSP_BASIC
The OID associated with this type.
Source§impl Clone for BasicOcspResponse
impl Clone for BasicOcspResponse
Source§fn clone(&self) -> BasicOcspResponse
fn clone(&self) -> BasicOcspResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BasicOcspResponse
impl Debug for BasicOcspResponse
Source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for BasicOcspResponse
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for BasicOcspResponse
Source§impl<'__der_lifetime> EncodeValue for BasicOcspResponse
impl<'__der_lifetime> EncodeValue for BasicOcspResponse
Source§impl PartialEq for BasicOcspResponse
impl PartialEq for BasicOcspResponse
impl Eq for BasicOcspResponse
impl<'__der_lifetime> Sequence<'__der_lifetime> for BasicOcspResponse
impl StructuralPartialEq for BasicOcspResponse
Auto Trait Implementations§
impl Freeze for BasicOcspResponse
impl RefUnwindSafe for BasicOcspResponse
impl Send for BasicOcspResponse
impl Sync for BasicOcspResponse
impl Unpin for BasicOcspResponse
impl UnwindSafe for BasicOcspResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
Source§impl<T> DynAssociatedOid for Twhere
T: AssociatedOid,
impl<T> DynAssociatedOid for Twhere
T: AssociatedOid,
Source§fn oid(&self) -> ObjectIdentifier
fn oid(&self) -> ObjectIdentifier
Get the OID associated with this value.
Source§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
Source§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
Source§fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer.
Source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.