crtin 0.1.0

Certificate introspection tool
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef CERT_UTILS_H
#define CERT_UTILS_H


#include <stddef.h>

#ifdef __cplusplus
extern "C" {
#endif

int decode_asn1_time(const unsigned char *data, size_t len, char *out, size_t out_len);

#ifdef __cplusplus
}
#endif

#endif