diff options
author | Remi Collet <remi@remirepo.net> | 2019-11-28 16:12:05 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-11-28 16:12:05 +0100 |
commit | a14df80c86c61a8fab4ad65df70be7c8e9cf14e1 (patch) | |
tree | 3221073580dc5f017f8302baab3be9f3e2dc8bd8 /REFLECTION | |
parent | 45edb0dcb024b8fdbc4329e207852eb92d20d006 (diff) |
v1.1.0
Diffstat (limited to 'REFLECTION')
-rw-r--r-- | REFLECTION | 23 |
1 files changed, 20 insertions, 3 deletions
@@ -1,15 +1,18 @@ -Extension [ <persistent> extension #156 uuid version 1.0.5 ] { +Extension [ <persistent> extension #156 uuid version 1.1.0 ] { - - Constants [11] { + - Constants [14] { Constant [ int UUID_VARIANT_NCS ] { 0 } Constant [ int UUID_VARIANT_DCE ] { 1 } Constant [ int UUID_VARIANT_MICROSOFT ] { 2 } Constant [ int UUID_VARIANT_OTHER ] { 3 } Constant [ int UUID_TYPE_DEFAULT ] { 0 } - Constant [ int UUID_TYPE_TIME ] { 1 } Constant [ int UUID_TYPE_DCE ] { 4 } Constant [ int UUID_TYPE_NAME ] { 1 } + Constant [ int UUID_TYPE_TIME ] { 1 } + Constant [ int UUID_TYPE_SECURITY ] { 2 } + Constant [ int UUID_TYPE_MD5 ] { 3 } Constant [ int UUID_TYPE_RANDOM ] { 4 } + Constant [ int UUID_TYPE_SHA1 ] { 5 } Constant [ int UUID_TYPE_NULL ] { -1 } Constant [ int UUID_TYPE_INVALID ] { -42 } } @@ -40,6 +43,20 @@ Extension [ <persistent> extension #156 uuid version 1.0.5 ] { Parameter #0 [ <required> $uuid ] } } + Function [ <internal:uuid> function uuid_generate_md5 ] { + + - Parameters [2] { + Parameter #0 [ <required> $uuid_ns ] + Parameter #1 [ <required> $name ] + } + } + Function [ <internal:uuid> function uuid_generate_sha1 ] { + + - Parameters [2] { + Parameter #0 [ <required> $uuid_ns ] + Parameter #1 [ <required> $name ] + } + } Function [ <internal:uuid> function uuid_type ] { - Parameters [1] { |