Subversion Repositories oidconverter

Rev

Rev 6 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 daniel-mar 1
# OID/DER converter for C and PHP
2
 
3
Version: 1.11
4
 
5
## Functionalities
6
 
7
- Encode  **absolute**  OID in dot-notation (`"2.999.1234"`) into Hex-String (`"06 04 88 37 89 52"`)  
8
- Encode  **relative**  OID in dot-notation (`"1234"`) into Hex-String (`"0D 02 89 52"`)  
9
- Encode  **absolute**  OID in dot-notation (`"2.999.1234"`) into C-Hex-String (`"\x06\x04\x88\x37\x89\x52"`)  
10
- Encode  **relative**  OID in dot-notation (`"1234"`) into C-Hex-String (`"\x0D\x02\x89\x52"`)  
11
- Decode Hex-Notation (`"06 04 88 37 89 52"`  or  `"\x06\x04\x88\x37\x89\x52"`) into dot-notation (`"2.999.1234"`)  
12
 
13
## Acknowledgements
14
 
15
Object ID converter by  [Matthias Gärtner](http://www.rtner.de/software/oid.html), 06/1999. Converted to plain 'C' 07/2001.  
16
Heavily improved version by Daniel Marschall, ViaThinkSoft June-July 2011.
17
 
18
Translated from C to PHP by Daniel Marschall, ViaThinkSoft.
19
 
20
Freeware - do with it whatever you want. Use at your own risk. No warranty of any kind.