Go to the source code of this file.
◆ asn1_id_type()
void asn1_id_type |
( |
int | id, |
|
|
int * | type, |
|
|
int * | cnst, |
|
|
int * | tag ) |
Definition at line 63 of file asn1_node.cpp.
64{
65 if (cnst!=NULL) {
67 else *cnst = 0;
68 }
69 if (type!=NULL) *type = (id & 0xc0) >> 6;
70 if (tag!=NULL) *tag = id & 0x1f;
71
72 return;
73}
#define JBXL_ASN1_CNSTRCTD
CONSTRUCTED 構造化フラグ
References JBXL_ASN1_CNSTRCTD.
Referenced by asn1_print_id().
◆ asn1_print_id()
void asn1_print_id |
( |
FILE * | fp, |
|
|
int | id ) |
Definition at line 76 of file asn1_node.cpp.
77{
78 int cnst, type, tag;
79
81
82 fprintf(fp, "[%02x] ", id);
86 else fprintf(fp, "(%02x) ", tag);
87
88 return;
89}
const char * _ASN1_NODE_TAG[]
const char * _ASN1_NODE_CLASS[]
const char * _ASN1_NODE_CONST[]
void asn1_id_type(int id, int *type, int *cnst, int *tag)
References _ASN1_NODE_CLASS, _ASN1_NODE_CONST, _ASN1_NODE_TAG, and asn1_id_type().
Referenced by print_tDER().
◆ asn1_print_tag_value()
void asn1_print_tag_value |
( |
FILE * | fp, |
|
|
int | id, |
|
|
Buffer | buf ) |
Definition at line 92 of file asn1_node.cpp.
93{
94 if (buf.
vldsz<=0)
return;
95
96 fprintf(fp, ": ");
97
98 int tag = id & 0x1f;
101 fprintf(fp, "INT = %ld ", n);
102 }
104 if (buf.
buf!=NULL) fprintf(fp,
"\"%s\" ", buf.
buf);
105 else fprintf(fp, "\"\" ");
106 }
107 else if (buf.
buf!=NULL) {
108 fprintf(fp, "....... ");
109 }
110 return;
111}
#define JBXL_ASN1_INT
INTEGER.
#define JBXL_ASN1_OCT
OCTET_STRING.
int vldsz
データの長さ.バイナリデータの場合も使用可能.文字列の場合は 0x00 を含まない.
unsigned char * buf
バッファの先頭へのポインタ.str[bufsz]は必ず 0x00となる.
References bin2int_DER(), Buffer::buf, JBXL_ASN1_INT, JBXL_ASN1_OCT, and Buffer::vldsz.
Referenced by print_tDER().
◆ _ASN1_NODE_CLASS
const char* _ASN1_NODE_CLASS[] |
Initial value:=
{
"UNIVERSAL",
"APPLICATION",
"CONTEXT-DEFINED",
"PRIVATE"
}
Definition at line 10 of file asn1_node.cpp.
11{
12 "UNIVERSAL",
13 "APPLICATION",
14 "CONTEXT-DEFINED",
15 "PRIVATE"
16};
Referenced by asn1_print_id().
◆ _ASN1_NODE_CONST
const char* _ASN1_NODE_CONST[] |
Initial value:=
{
"PRIMITIVE",
"CONSTRUCTED"
}
Definition at line 19 of file asn1_node.cpp.
20{
21 "PRIMITIVE",
22 "CONSTRUCTED"
23};
Referenced by asn1_print_id().
◆ _ASN1_NODE_TAG
const char* _ASN1_NODE_TAG[] |
Definition at line 26 of file asn1_node.cpp.
27{
28 "DATA_END",
29 "BOOLEAN",
30 "INTEGER",
31 "BIT_STRING",
32 "OCTET_STRING",
33 "NULL",
34 "OBJECT_IDENTIFIER",
35 "OBJECT_DESCRITOR",
36 "EXTERNAL",
37 "REAL",
38 "ENUMERATED",
39 "EMBEDDED PDV",
40 "UTF8_STRING",
41 "RELATIVE-OID",
42 "?",
43 "?",
44 "SEQUENCE",
45 "SET",
46 "NUMERIC_STRING",
47 "PRINTABLE_STRING",
48 "TELETEX_STRING",
49 "VIDEOTEX_STRING",
50 "IA5_STRING",
51 "UTC_TIME",
52 "GENERALIZED_TIME",
53 "GRAPHIC_STRING",
54 "VISIBLE_STRING",
55 "GENERAL_STRING",
56 "UNIVERSAL_STRING",
57 "CHARACTER_STRING",
58 "BMP_STRING",
59 "?",
60};
Referenced by asn1_print_id().