sc_certificate_serialize()

Serialize the provided certificate instance.

Synopsis:

#include <smartcard/sc_certificate.h>
 
sc_response_code_t sc_certificate_serialize(const sc_certificate_t *certificate,                 
                                            unsigned char *buffer,                 
                                            size_t *buffer_length)

Since:

BlackBerry 10.2.0

Arguments:

certificate

The certificate instance. This value cannot be NULL.

buffer

The buffer where the serialized form of the instance is written. If this parameter is NULL, this function computes only the size of the buffer required to hold the serialized form of the instance.

buffer_length

If buffer is not NULL, then this parameter indicates the length of buffer. Otherwise, the size of the buffer required to hold the serialized data is written to this parameter when it returns. This value cannot be NULL.

Library:

libscs (For the qcc command, use the -l scs option to link against this library)

Description:

Returns:

SC_SCARD_S_SUCCESS upon success, an error code otherwise. See sc_response_code_t for defined error codes.