Created
August 23, 2024 06:37
-
-
Save AlexeyTolstopyatov/2c817940519f2d98ed86e35e3ff555d3 to your computer and use it in GitHub Desktop.
DER Encoding keys define
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define CERT_DER_H | |
/* | |
* Если я помню правильно, "DER" Кодировка | |
* работает следующим образом: | |
* 1) Указывается тип данных | |
* 2) Указывается длинна | |
* 3) Указываются сами данные в виде последовательности байт | |
* | |
* ASN 1>> INTEGER 8192 | |
* DER << 02 03 20 00 | |
* | |
*/ | |
#define DER_INT 0x02 // INTEGER | |
#define DER_SEQ 0x30 // SEQUENCE | |
#define DER_OBJ 0x06 // OBJECT IDENTIFIER | |
#define DER_UTC 0x17 // UTC Time | |
#define DER_TIME 0x18 // Generalized Time | |
#define DER_SET 0x31 // SET | |
#define DER_UTF8 0x0c // UTF-8 String | |
#define DER_BITS 0x03 // BIT STRING | |
#define DER_NULL 0x05 // NULL | |
char * typer(int dert); | |
#endif //CERT_DER_H |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment