Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved


Chapter 7 Connection : tibemsSSLParams : tibemsSSLParams_AddIssuerCert

tibemsSSLParams_AddIssuerCert
Function
Purpose
Add one or more issuer certificates to the SSL parameter object.
C Declaration
tibems_status tibemsSSLParams_AddIssuerCert(
    tibemsSSLParams SSLParams,
    const void* data,
    tibems_int size,
    tibems_int encoding );
 
tibems_status tibemsSSLParams_AddIssuerCertFile(
    tibemsSSLParams SSLParams,
    const char* filename,
    tibems_int encoding );
COBOL Call
CALL "tibemsSSLParams_AddIssuerCert"
USING BY VALUE SSLParams,
BY REFERENCE data,
BY VALUE size,
BY REFERENCE encoding,
RETURNING tibems-status
END-CALL.
 
CALL "tibemsSSLParams_AddIssuerCertFile"
USING BY VALUE SSLParams,
BY REFERENCE filename,
BY VALUE encoding,
RETURNING tibems-status
END-CALL.
 
SSLParams has usage pointer.
COBOL does not support tibemsSSLParams_AddIssuerCertFile.
Parameters
 
Remarks
Issuer certificates are certificates that authenticate the client’s certificate; the certificate authority (CA) that issued the client’s certificate supplies these. SSL clients must supply them during the SSL handshake, so your program must set them.
If the parameter object already has issuer certificates, this call adds to that set; it does not overwrite them.

Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved