Skip to main content

Documentation Index

Fetch the complete documentation index at: https://notevil.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

C2xSecCertificateGetSignerHandle

CAPL Functions » Car2x » C2xSecCertificateGetSignerHandle Valid for: CANoe DE

Function Syntax

long C2xSecCertificateGetSignerHandle( long certificateHandle );

Description

Gets the signer (parent) certificate of a certificate.

Parameters

  • certificateHandle: Handle of the certificate

Return Values

  • 0: —
  • ≠0: Handle of the signer (parent) certificate

Example

long certificateHandle;
long signerHandle;
certificateHandle = C2xSecCertificateGetHandle( "MyCert" );
if (certificateHandle != 0)
{
  signerHandle = C2xSecCertificateGetSignerHandle(certificateHandle);
}

See Also