Struct MQSCO

Source
#[repr(C)]
pub struct MQSCO {
Show 20 fields pub StrucId: MQCHAR4, pub Version: MQLONG, pub KeyRepository: MQCHAR256, pub CryptoHardware: MQCHAR256, pub AuthInfoRecCount: MQLONG, pub AuthInfoRecOffset: MQLONG, pub AuthInfoRecPtr: PMQAIR, pub KeyResetCount: MQLONG, pub FipsRequired: MQLONG, pub EncryptionPolicySuiteB: [MQLONG; 4], pub CertificateValPolicy: MQLONG, pub CertificateLabel: MQCHAR64, pub KeyRepoPasswordPtr: MQPTR, pub KeyRepoPasswordOffset: MQLONG, pub KeyRepoPasswordLength: MQLONG, pub HTTPSCertValidation: MQLONG, pub HTTPSCertRevocation: MQLONG, pub HTTPSKeyStorePtr: MQPTR, pub HTTPSKeyStoreOffset: MQLONG, pub HTTPSKeyStoreLength: MQLONG,
}
Expand description

SSL Configuration Options

§References

Fields§

§StrucId: MQCHAR4

Structure identifier

§Version: MQLONG

Structure version number

§KeyRepository: MQCHAR256

Location of SSL key repository

§CryptoHardware: MQCHAR256

Cryptographic hardware configuration string

§AuthInfoRecCount: MQLONG

Number of MQAIR records present

§AuthInfoRecOffset: MQLONG

Offset of first MQAIR record from start of MQSCO structure

§AuthInfoRecPtr: PMQAIR

Address of first MQAIR record

§KeyResetCount: MQLONG

Number of unencrypted bytes sent/received before secret key is reset

MQSCO::Version >= 2

§FipsRequired: MQLONG

Using FIPS-certified algorithms

MQSCO::Version >= 2

§EncryptionPolicySuiteB: [MQLONG; 4]

Use only Suite B cryptographic algorithms

MQSCO::Version >= 3

§CertificateValPolicy: MQLONG

Certificate validation policy

MQSCO::Version >= 4

§CertificateLabel: MQCHAR64

SSL/TLS certificate label

MQSCO::Version >= 5

§KeyRepoPasswordPtr: MQPTR

Address of key repository password

MQSCO::Version >= 6

§KeyRepoPasswordOffset: MQLONG

Offset of key repository password

MQSCO::Version >= 6

§KeyRepoPasswordLength: MQLONG

Length of key repository password

MQSCO::Version >= 6

§HTTPSCertValidation: MQLONG

HTTPS certificate validation level

MQSCO::Version >= 7

§HTTPSCertRevocation: MQLONG

HTTPS certificate revocation level

MQSCO::Version >= 7

§HTTPSKeyStorePtr: MQPTR

Address of HTTPS Keystore

MQSCO::Version >= 7

§HTTPSKeyStoreOffset: MQLONG

Offset of HTTPS Keystore

MQSCO::Version >= 7

§HTTPSKeyStoreLength: MQLONG

Length of HTTPS keystore

MQSCO::Version >= 7

Trait Implementations§

Source§

impl Clone for MQSCO

Source§

fn clone(&self) -> MQSCO

Returns a duplicate 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 Debug for MQSCO

Source§

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

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

impl Copy for MQSCO

Auto Trait Implementations§

§

impl Freeze for MQSCO

§

impl RefUnwindSafe for MQSCO

§

impl !Send for MQSCO

§

impl !Sync for MQSCO

§

impl Unpin for MQSCO

§

impl UnwindSafe for MQSCO

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

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

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.