Meeting SDK for macOS API Reference
Loading...
Searching...
No Matches
ZoomSDKSSLVerificationHelper Class Reference

Helper interface for SSL certificate verification. More...

#include <ZoomSDKNetworkService.h>

Inherits NSObject.

Instance Methods

(NSString *) - getCertIssueTo
 The certificate is issued to whom.
(NSString *) - getCertIssueBy
 The certificate is issued by whom.
(NSString *) - getCertSerialNum
 Gets serial number of certificate.
(NSString *) - getCertFingerprint
 Gets fingerprint of certificate.
(void) - trust
 Trust the certificate.
(void) - cancel
 Cancels the certificate.

Detailed Description

Helper interface for SSL certificate verification.

Definition at line 71 of file ZoomSDKNetworkService.h.

Method Documentation

◆ cancel

- (void) cancel

Cancels the certificate.

References cancel.

Referenced by cancel.

◆ getCertFingerprint

- (NSString *) getCertFingerprint

Gets fingerprint of certificate.

Returns
If the function succeeds, it returns the certificate's fingerprint. Otherwise, this function fails and returns nil.

References getCertFingerprint.

Referenced by getCertFingerprint.

◆ getCertIssueBy

- (NSString *) getCertIssueBy

The certificate is issued by whom.

Returns
If the function succeeds, it returns the user by whom the certificate is issued. Otherwise, this function fails and returns nil.

References getCertIssueBy.

Referenced by getCertIssueBy.

◆ getCertIssueTo

- (NSString *) getCertIssueTo

The certificate is issued to whom.

Returns
If the function succeeds, it returns the user to whom the certificate is issued. Otherwise, this function fails and returns nil.

References getCertIssueTo.

Referenced by getCertIssueTo.

◆ getCertSerialNum

- (NSString *) getCertSerialNum

Gets serial number of certificate.

Returns
If the function succeeds, it returns the certificate's serial number. Otherwise, this function fails and returns nil.

References getCertSerialNum.

Referenced by getCertSerialNum.

◆ trust

- (void) trust

Trust the certificate.

References trust.

Referenced by trust.