Subversion Repositories oidplus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
226 daniel-mar 1
[1.3.6.1.4.1.37476.2.5.1.1.2]
2
 
3
oid:.1.3.6.1.4.1.37476.3.2.3.1                        identifier:stringToNumber
4
oid:.1.3.6.1.4.1.37476.3.2.3.1                        unicodelabel:StringToNumber
5
oid:.1.3.6.1.4.1.37476.3.2.3.1                        allocated:daniel-marschall@viathinksoft.de 2014-12-09
6
oid:.1.3.6.1.4.1.37476.3.2.3.1                        description: StN (String to Number) algorithm
7
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: The StN (String to Number) algorithm works as follows:
8
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: If the input string is empty, the resulting number will be 99.
9
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: If the input string is not empty, then it will be
10
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: encoded using UTF-8 and finally encoded with Base64.
11
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: Every Base64 will be encoded to a two digit decimal number.
12
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: 'A' encodes to 00, 'B' encodes to 01, ...,
13
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: '/' encodes to 63, '=' encodes to 64
14
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: All numbers will be concatenated.
15
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: Example:
16
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: 'test' will encode to '2906215129006464'
17
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: Using the StN algorithm, every string, or identifier respectively,
18
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: can be mapped into the OID tree (but the client must use
19
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: BigInteger to handle the OID, or read the OID as String
20
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: instead of interprete each arc as integer).
21
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: The advantage in comparison to name based Universally Unique Identifiers (UUIDs), which can be
22
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: mapped to the OID tree into arc 2.25 is, that the OID
23
oid:.1.3.6.1.4.1.37476.3.2.3.1                        information: can be converted back to its original string.