ASN.1数据对象中变量前面的方括号内的内容是什么意思?

时间:2019-03-27 08:41:54

标签: smartcard tlv

  

euiccSignature1 [APPLICATION 55] OCTET STRING,--EUICC_Sign1,标签5F37

以上是我在ASN.1数据对象中所拥有的。我将对它进行DER编码。有人可以告诉我该“标签5F37”和该方括号内有什么吗?

1 个答案:

答案 0 :(得分:0)

首先检查BER标签编码规则,然后DER只是它的一个子集,例如here。一起工作,您将得到df_list2 <- df_list %>% split(.$df_name) %>% map(~ .x$data[[1]]) str(df_list2) List of 2 $ A:'data.frame': 450 obs. of 5 variables: ..$ Sepal.Length: num [1:450] 5.1 4.9 4.7 4.6 5 5.4 4.6 5 4.4 4.9 ... ..$ Sepal.Width : num [1:450] 3.5 3 3.2 3.1 3.6 3.9 3.4 3.4 2.9 3.1 ... ..$ Petal.Length: num [1:450] 1.4 1.4 1.3 1.5 1.4 1.7 1.4 1.5 1.4 1.5 ... ..$ Petal.Width : num [1:450] 0.2 0.2 0.2 0.2 0.2 0.4 0.3 0.2 0.2 0.1 ... ..$ Species : Factor w/ 3 levels "setosa","versicolor",..: 1 1 1 1 1 1 1 1 1 1 ... $ B:'data.frame': 300 obs. of 5 variables: ..$ Sepal.Length: num [1:300] 5.1 4.9 4.7 4.6 5 5.4 4.6 5 4.4 4.9 ... ..$ Sepal.Width : num [1:300] 3.5 3 3.2 3.1 3.6 3.9 3.4 3.4 2.9 3.1 ... ..$ Petal.Length: num [1:300] 1.4 1.4 1.3 1.5 1.4 1.7 1.4 1.5 1.4 1.5 ... ..$ Petal.Width : num [1:300] 0.2 0.2 0.2 0.2 0.2 0.4 0.3 0.2 0.2 0.1 ... ..$ Species : Factor w/ 3 levels "setosa","versicolor",..: 1 1 1 1 1 1 1 1 1 1 ... 。方括号是应用程序的编码格式,它是应用程序特定的八位位组字符串,根据所使用的应用程序具有一定的含义。有关符号的更多信息,请参见here