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.

◆ 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.

◆ 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.

◆ 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.

◆ 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.

◆ trust

- (void) trust

Trust the certificate.