mirror of
https://xff.cz/git/u-boot/
synced 2025-09-30 15:01:27 +02:00
12 lines
191 B
C
Executable File
12 lines
191 B
C
Executable File
#include"asn1.h"
|
|
#include"x509.h"
|
|
|
|
|
|
///////////X509_get_serialNumber///////////////////ok
|
|
|
|
ASN1_INTEGER *X509_get_serialNumber(X509 *a)
|
|
{
|
|
return(a->cert_info->serialNumber);
|
|
}
|
|
|