Integer
Values of this syntax hold whole numbers of unlimited magnitude.
The syntax follows this ABNF:
Integer = ( HYPHEN LDIGIT *DIGIT ) / number
number = DIGIT / ( LDIGIT 1*DIGIT )
HYPHEN = %x2D ; hyphen ("-")
DIGIT = %x30 / LDIGIT ; "0"-"9"
LDIGIT = %x31-39 ; "1"-"9"
The syntax corresponds to the INTEGER ASN.1 type.
Origin |
|
Description |
Integer |
OID |
1.3.6.1.4.1.1466.115.121.1.27 |