diff options
Diffstat (limited to 'REFLECTION')
-rw-r--r-- | REFLECTION | 42 |
1 files changed, 40 insertions, 2 deletions
@@ -1,8 +1,46 @@ -Extension [ <persistent> extension #102 xpass version 1.0.0 ] { +Extension [ <persistent> extension #102 xpass version 1.1.0RC1 ] { - - Constants [2] { + - Constants [16] { + Constant [ string CRYPT_PREFIX_STD_DES ] { } + Constant [ string CRYPT_PREFIX_EXT_DES ] { _ } + Constant [ string CRYPT_PREFIX_MD5 ] { $1$ } + Constant [ string CRYPT_PREFIX_BLOWFISH ] { $2y$ } + Constant [ string CRYPT_PREFIX_SHA256 ] { $5$ } + Constant [ string CRYPT_PREFIX_SHA512 ] { $6$ } + Constant [ string CRYPT_PREFIX_SCRYPT ] { $7$ } + Constant [ string CRYPT_PREFIX_GOST_YESCRYPT ] { $gy$ } + Constant [ string CRYPT_PREFIX_YESCRYPT ] { $y$ } + Constant [ int CRYPT_SALT_OK ] { 0 } + Constant [ int CRYPT_SALT_INVALID ] { 1 } + Constant [ int CRYPT_SALT_METHOD_DISABLED ] { 2 } + Constant [ int CRYPT_SALT_METHOD_LEGACY ] { 3 } + Constant [ int CRYPT_SALT_TOO_CHEAP ] { 4 } Constant [ string PASSWORD_SHA512 ] { 6 } Constant [ string PASSWORD_YESCRYPT ] { y } } + + - Functions { + Function [ <internal:xpass> function crypt_gensalt ] { + + - Parameters [2] { + Parameter #0 [ <optional> ?string $prefix = null ] + Parameter #1 [ <optional> int $count = 0 ] + } + - Return [ ?string ] + } + Function [ <internal:xpass> function crypt_preferred_method ] { + + - Parameters [0] { + } + - Return [ ?string ] + } + Function [ <internal:xpass> function crypt_checksalt ] { + + - Parameters [1] { + Parameter #0 [ <required> string $salt ] + } + - Return [ int ] + } + } } |