-
Notifications
You must be signed in to change notification settings - Fork 1
/
oid.c
11 lines (10 loc) · 791 Bytes
/
oid.c
1
2
3
4
5
6
7
8
9
10
11
#include "x509cert.h"
const unsigned char x509cert_oid_CN[] = {0x06, 0x03, 0x55, 0x04, 0x03};
const unsigned char x509cert_oid_L[] = {0x06, 0x03, 0x55, 0x04, 0x07};
const unsigned char x509cert_oid_ST[] = {0x06, 0x03, 0x55, 0x04, 0x08};
const unsigned char x509cert_oid_O[] = {0x06, 0x03, 0x55, 0x04, 0x0a};
const unsigned char x509cert_oid_OU[] = {0x06, 0x03, 0x55, 0x04, 0x0b};
const unsigned char x509cert_oid_C[] = {0x06, 0x03, 0x55, 0x04, 0x06};
const unsigned char x509cert_oid_STREET[] = {0x06, 0x03, 0x55, 0x04, 0x09};
const unsigned char x509cert_oid_DC[] = {0x06, 0x0a, 0x09, 0x92, 0x26, 0x89, 0x93, 0xf2, 0x2c, 0x64, 0x01, 0x19};
const unsigned char x509cert_oid_UID[] = {0x06, 0x0a, 0x09, 0x92, 0x26, 0x89, 0x93, 0xf2, 0x2c, 0x64, 0x01, 0x01};