Subversion Repositories php_utils

Rev

Rev 76 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 76 Rev 90
Line 55... Line 55...
55
        pbkdf2 = PBKDF2-HMAC (Additional param i= contains the number of iterations)
55
        pbkdf2 = PBKDF2-HMAC (Additional param i= contains the number of iterations)
56
<iterations> can be omitted if 0. It is required for mode=pbkdf2. For sp/ps/sps/hmac, it is optional.
56
<iterations> can be omitted if 0. It is required for mode=pbkdf2. For sp/ps/sps/hmac, it is optional.
57
Like most Crypt-hashes, <salt> and <hash> are Radix64 coded
57
Like most Crypt-hashes, <salt> and <hash> are Radix64 coded
58
with alphabet './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' and no padding.
58
with alphabet './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' and no padding.
59
Link to the online specification:
59
Link to the online specification:
60
        https://oidplus.viathinksoft.com/oidplus/?goto=oid%3A1.3.6.1.4.1.37476.3.0.1.1
60
        https://hosted.oidplus.com/viathinksoft/?goto=oid%3A1.3.6.1.4.1.37476.3.0.1.1
61
Reference implementation in PHP:
61
Reference implementation in PHP:
62
        https://github.com/danielmarschall/php_utils/blob/master/vts_crypt.inc.php
62
        https://github.com/danielmarschall/php_utils/blob/master/vts_crypt.inc.php
63
 
63
 
64
*/
64
*/
65
 
65