Subversion Repositories uuid_mac_utils

Rev

Rev 74 | Rev 76 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. /*
  4. * UUID & MAC Utils
  5. * Copyright 2017 - 2023 Daniel Marschall, ViaThinkSoft
  6. * Version 2023-10-06
  7. *
  8. * Licensed under the Apache License, Version 2.0 (the "License");
  9. * you may not use this file except in compliance with the License.
  10. * You may obtain a copy of the License at
  11. *
  12. *     http://www.apache.org/licenses/LICENSE-2.0
  13. *
  14. * Unless required by applicable law or agreed to in writing, software
  15. * distributed under the License is distributed on an "AS IS" BASIS,
  16. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17. * See the License for the specific language governing permissions and
  18. * limitations under the License.
  19. */
  20.  
  21. include_once __DIR__.'/includes/uuid_utils.inc.php';
  22.  
  23. const AUTO_NEW_UUIDS = 15;
  24.  
  25. ?><!DOCTYPE html>
  26. <html lang="en">
  27.  
  28. <head>
  29.         <meta charset="iso-8859-1">
  30.         <link rel="stylesheet" type="text/css" href="style.css">
  31.         <title>UUID &amp; MAC Utils by Daniel Marschall</title>
  32.         <meta name=viewport content="width=device-width, initial-scale=1">
  33. </head>
  34.  
  35. <body>
  36.  
  37. <h1>UUID &amp; MAC Utils by Daniel Marschall</h1>
  38.  
  39. <p><a href="https://github.com/danielmarschall/uuid_mac_utils/">View the source code</a></p>
  40.  
  41. <h2>Overview</h2>
  42.  
  43. <ul>
  44.     <li><a href="#gen_uuid">Generate random and/or time-based UUIDs</a><ul>
  45.             <li><a href="#gen_uuidv7"><font color="green">New:</font> Generate Unix Epoch time-based (version 7) UUID</a></li>
  46.             <li><a href="#gen_uuidv6"><font color="green">New:</font> Generate reordered Gregorian time-based (version 6) UUID</a></li>
  47.             <li><a href="#gen_uuidv4">Generate random (version 4) UUID</a></li>
  48.             <li><a href="#gen_uuidv1">Generate Gregorian time-based (version 1) UUID</a></li>
  49.         </ul></li>
  50.     <li><a href="#gen_other_uuid">Generate other UUID types</a><ul>
  51.             <li><a href="#gen_uuid_ncs">NCS (variant 0) UUID</a></li>
  52.             <li><a href="#gen_uuidv2">Generate DCE Security (version 2) UUID</a></li>
  53.             <li><a href="#gen_uuidv35">Generate name-based (version 3 / 5 / <font color="green">New: 8</font>) UUID</a></li>
  54.             <li><a href="#gen_uuidv8"><font color="green">New:</font> Generate Custom (version 8) UUID</a></li>
  55.         </ul></li>
  56.     <li><a href="#interpret_uuid">Interpret a UUID</a></li>
  57.     <li><a href="#interpret_mac">Interpret a MAC address (MAC / EUI / ELI / SAI / AAI)</a><ul>
  58.         <li><a href="#gen_aai">Generate an AAI</a></li>
  59.     </ul></li>
  60. </ul>
  61.  
  62. <h2 id="gen_uuid">Generate random and/or time-based UUIDs</h2>
  63.  
  64. <h3 id="gen_uuidv7"><font color="green">New:</font> Generate Unix Epoch time-based (version 7) UUID &#11088;</h3>
  65.  
  66. <p><i>A UUIDv7 measures time in the Unix Epoch with an accuracy
  67. between 1ms and 245ns, depending on how many bits are spent for the timestamp (48-60 bits).
  68. The rest of the UUID (62-74 bits) is filled with random data.
  69. The timestamp is at the front of the UUID, therefore the UUIDs are monotonically increasing,
  70. which is good for using them in database indexes.
  71. Since this UUID version does not contain a MAC address, it is also
  72. recommended due to the improved privacy.</i></p>
  73.  
  74. <script>
  75. function show_uuidv7_info() {
  76.         document.getElementById("uuidv7_info_button").style.display = "none";
  77.         document.getElementById("uuidv7_info").style.display = "block";
  78. }
  79. </script>
  80. <p><a id="uuidv7_info_button" href="javascript:show_uuidv7_info()">Show format</a>
  81. <pre id="uuidv7_info" style="display:none">Variant 1, Version 7 UUID:
  82. - 48 bit <abbr title="Count of 1ms intervals passed since 1 Jan 1970 00:00:00 GMT">Unix Time in milliseconds</abbr>
  83. -  4 bit Version (fix 0x7)
  84. - 12 bit Data
  85. -  2 bit Variant (fix 0b10)
  86. - 62 bit Data
  87.  
  88. Structure of data (74 bits):
  89. - OPTIONAL : Sub-millisecond timestamp fraction (0-12 bits)
  90. - OPTIONAL : Carefully seeded counter
  91. - Random generated bits for any remaining space
  92.  
  93. Time resolution for various sub-millisecond bits:
  94. <?php
  95. for ($num_ms_frac_bits=0; $num_ms_frac_bits<=12; $num_ms_frac_bits++) {
  96.         $resolution_ns = 1000000 / pow(2,$num_ms_frac_bits);
  97.         if ($resolution_ns >= 1000000) $resolution_ns_hf = ($resolution_ns/1000000)." ms";
  98.         else if ($resolution_ns >= 1000) $resolution_ns_hf = ($resolution_ns/1000)." &micro;s";
  99.         else $resolution_ns_hf = "$resolution_ns ns";
  100.         echo "$num_ms_frac_bits bits fraction = $resolution_ns_hf\n";
  101. }
  102. ?>
  103.  
  104. This implementation outputs:
  105. - 12 bits sub-millisecond timestamp (~245ns resolution)
  106. - no counter
  107. - 62 bits random data
  108. </pre></p>
  109.  
  110. <?php
  111. if (AUTO_NEW_UUIDS > 0) { /** @phpstan-ignore-line */
  112.         echo '<p>Here are '.AUTO_NEW_UUIDS.' UUIDs that were created just for you! (Reload the page to get more)</p>';
  113.  
  114.         echo '<pre>';
  115.         for ($i=0; $i<AUTO_NEW_UUIDS; $i++) {
  116.                 $uuid = gen_uuid_v7();
  117.                 echo '<a href="interprete_uuid.php?uuid='.$uuid.'">'.$uuid.'</a><br>';
  118.         }
  119.         echo '</pre>';
  120. }
  121. ?>
  122.  
  123. <form method="GET" action="interprete_uuid.php">
  124.     <input type="hidden" name="version" value="7">
  125.     <input type="hidden" name="uuid" value="CREATE"> <input type="submit" value="Create and display another UUID">
  126. </form>
  127.  
  128. <h3 id="gen_uuidv6"><font color="green">New:</font> Generate reordered Gregorian time-based (version 6) UUID &#9200;</h3>
  129.  
  130. <p><i>Like UUIDv1, this kind of UUID is made of the MAC address of the generating computer,
  131.         the time, and a clock sequence. However, the components in UUIDv6 are reordered (time is at the beginning),
  132.         so that UUIDs are monotonically increasing, which is good for using them in database indexes.</i></p>
  133.  
  134. <script>
  135. function show_uuidv6_info() {
  136.         document.getElementById("uuidv6_info_button").style.display = "none";
  137.         document.getElementById("uuidv6_info").style.display = "block";
  138. }
  139. </script>
  140. <p><a id="uuidv6_info_button" href="javascript:show_uuidv6_info()">Show format</a>
  141. <pre id="uuidv6_info" style="display:none">Variant 1, Version 6 UUID:
  142. - 48 bit High <abbr title="Count of 100ns intervals passed since 15 Oct 1582 00:00:00 GMT">Time</abbr>
  143. -  4 bit Version (fix 0x6)
  144. - 12 bit Low <abbr title="Count of 100ns intervals passed since 15 Oct 1582 00:00:00 GMT">Time</abbr>
  145. -  2 bit Variant (fix 0b10)
  146. -  6 bit Clock Sequence High
  147. -  8 bit Clock Sequence Low
  148. - 48 bit MAC Address</pre></p>
  149.  
  150. <?php
  151. if (AUTO_NEW_UUIDS > 0) { /** @phpstan-ignore-line */
  152.         echo '<p>Here are '.AUTO_NEW_UUIDS.' UUIDs that were created just for you! (Reload the page to get more)</p>';
  153.  
  154.         echo '<pre>';
  155.         for ($i=0; $i<AUTO_NEW_UUIDS; $i++) {
  156.                 $uuid = gen_uuid_v6();
  157.                 echo '<a href="interprete_uuid.php?uuid='.$uuid.'">'.$uuid.'</a><br>';
  158.         }
  159.         echo '</pre>';
  160. }
  161. ?>
  162.  
  163. <form method="GET" action="interprete_uuid.php">
  164.     <input type="hidden" name="version" value="6">
  165.     <input type="hidden" name="uuid" value="CREATE"> <input type="submit" value="Create and display another UUID">
  166. </form>
  167.  
  168. <h3 id="gen_uuidv4">Generate random (version 4) UUID &#x1F3B2;</h3>
  169.  
  170. <p><i>A UUIDv4 is made of 122 random&nbsp;bits. No other information is encoded in this kind of UUID.</i></p>
  171.  
  172. <script>
  173. function show_uuidv4_info() {
  174.         document.getElementById("uuidv4_info_button").style.display = "none";
  175.         document.getElementById("uuidv4_info").style.display = "block";
  176. }
  177. </script>
  178. <p><a id="uuidv4_info_button" href="javascript:show_uuidv4_info()">Show format</a>
  179. <pre id="uuidv4_info" style="display:none">Variant 1, Version 4 UUID:
  180. - 48 bit Random High
  181. -  4 bit Version (fix 0x4)
  182. - 12 bit Random Mid
  183. -  2 bit Variant (fix 0b10)
  184. - 62 bit Random Low</pre></p>
  185.  
  186. <?php
  187. if (AUTO_NEW_UUIDS > 0) { /** @phpstan-ignore-line */
  188.         echo '<p>Here are '.AUTO_NEW_UUIDS.' UUIDs that were created just for you! (Reload the page to get more)</p>';
  189.  
  190.         echo '<pre>';
  191.         for ($i=0; $i<AUTO_NEW_UUIDS; $i++) {
  192.                 $uuid = gen_uuid_v4();
  193.                 echo '<a href="interprete_uuid.php?uuid='.$uuid.'">'.$uuid.'</a><br>';
  194.         }
  195.         echo '</pre>';
  196. }
  197. ?>
  198.  
  199. <form method="GET" action="interprete_uuid.php">
  200.     <input type="hidden" name="version" value="4">
  201.     <input type="hidden" name="uuid" value="CREATE"> <input type="submit" value="Create and display another UUID">
  202. </form>
  203.  
  204. <h3 id="gen_uuidv1">Generate Gregorian time-based (version 1) UUID &#9200;</h3>
  205.  
  206. <p><i>A UUIDv1 is made of the MAC address of the generating computer,
  207. the time, and a clock sequence.</i></p>
  208.  
  209. <script>
  210. function show_uuidv1_info() {
  211.         document.getElementById("uuidv1_info_button").style.display = "none";
  212.         document.getElementById("uuidv1_info").style.display = "block";
  213. }
  214. </script>
  215. <p><a id="uuidv1_info_button" href="javascript:show_uuidv1_info()">Show format</a>
  216. <pre id="uuidv1_info" style="display:none">Variant 1, Version 1 UUID:
  217. - 32 bit Low <abbr title="Count of 100ns intervals passed since 15 Oct 1582 00:00:00 GMT">Time</abbr>
  218. - 16 bit Mid <abbr title="Count of 100ns intervals passed since 15 Oct 1582 00:00:00 GMT">Time</abbr>
  219. -  4 bit Version (fix 0x1)
  220. - 12 bit High <abbr title="Count of 100ns intervals passed since 15 Oct 1582 00:00:00 GMT">Time</abbr>
  221. -  2 bit Variant (fix 0b10)
  222. -  6 bit Clock Sequence High
  223. -  8 bit Clock Sequence Low
  224. - 48 bit MAC Address</pre></p>
  225.  
  226. <?php
  227. if (AUTO_NEW_UUIDS > 0) { /** @phpstan-ignore-line */
  228.     echo '<p>Here are '.AUTO_NEW_UUIDS.' UUIDs that were created just for you! (Reload the page to get more)</p>';
  229.  
  230.     echo '<pre>';
  231.     for ($i=0; $i<AUTO_NEW_UUIDS; $i++) {
  232.         $uuid = gen_uuid_v1();
  233.         echo '<a href="interprete_uuid.php?uuid='.$uuid.'">'.$uuid.'</a><br>';
  234.     }
  235.     echo '</pre>';
  236. }
  237. ?>
  238.  
  239. <form method="GET" action="interprete_uuid.php">
  240.     <input type="hidden" name="version" value="1">
  241.     <input type="hidden" name="uuid" value="CREATE"> <input type="submit" value="Create and display another UUID">
  242. </form>
  243.  
  244. <h2 id="gen_other_uuid">Generate other UUID types</h2>
  245.  
  246. <p><i>The following types of UUIDs are less common and/or require special knowledge. Please only use the following
  247. generators if you know what you are doing.</i></p>
  248.  
  249. <h3 id="gen_uuid_ncs">NCS (variant 0) UUID</h3>
  250.  
  251. <p>The <abbr title="Network Computing System">NCS</abbr> UUIDs are a legacy format
  252. initially designed by Apollo Computer that cannot be generated anymore, because the
  253. amount of available timestamp bits was exhausted on <strong>5 September 2015</strong>.
  254. As an example, here is the last possible NCS UUID (all bits of the timestamp are set to 1) for IP address 127.0.0.1:
  255. <a href="interprete_uuid.php?uuid=ffffffff-ffff-0000-027f-000001000000"><code>ffffffff-ffff-0000-027f-000001000000</code></a>.</p>
  256.  
  257. <script>
  258. function show_uuidnce_info() {
  259.         document.getElementById("uuidnce_info_button").style.display = "none";
  260.         document.getElementById("uuidnce_info").style.display = "block";
  261. }
  262. </script>
  263. <p><a id="uuidnce_info_button" href="javascript:show_uuidnce_info()">Show format</a>
  264. <pre id="uuidnce_info" style="display:none">Variant 0 UUID:
  265. - 32 bit High <abbr title="Count of 4&#xB5;s intervals passed since 1 Jan 1980 00:00:00 GMT">Time</abbr>
  266. - 16 bit Low <abbr title="Count of 4&#xB5;s intervals passed since 1 Jan 1980 00:00:00 GMT">Time</abbr>
  267. - 16 bit Reserved
  268. -  1 bit Variant (fix 0b0)
  269. -  7 bit <abbr title="socket_$unspec (0x0)
  270. socket_$unix (0x1)
  271. socket_$internet (0x2)
  272. socket_$implink (0x3)
  273. socket_$pup (0x4)
  274. socket_$chaos (0x5)
  275. socket_$ns (0x6)
  276. socket_$nbs (0x7)
  277. socket_$ecma (0x8)
  278. socket_$datakit (0x9)
  279. socket_$ccitt (0xA)
  280. socket_$sna (0xB)
  281. socket_$unspec2 (0xC)
  282. socket_$dds (0xD)">Family</abbr>
  283. - 56 bit Node</pre></p>
  284.  
  285. <h3 id="gen_uuidv2">Generate DCE Security (version 2) UUID</h3>
  286.  
  287. <p><i>An UUIDv2 contains information about the creator (person, group, or organization), the generating system (MAC address), and time.
  288. The creator information replaced parts of the time bits, therefore the time resolution is very low.</i></p>
  289.  
  290. <script>
  291. function show_uuidv2_info() {
  292.         document.getElementById("uuidv2_info_button").style.display = "none";
  293.         document.getElementById("uuidv2_info").style.display = "block";
  294. }
  295. </script>
  296. <p><a id="uuidv2_info_button" href="javascript:show_uuidv2_info()">Show format</a>
  297. <pre id="uuidv2_info" style="display:none">Variant 1, Version 2 UUID:
  298. - 32 bit Local Domain Number
  299. - 16 bit Mid <abbr title="Count of 429.4967296s intervals passed since 15 Oct 1582 00:00:00 GMT">Time</abbr>
  300. -  4 bit Version (fix 0x2)
  301. - 12 bit High <abbr title="Count of 429.4967296s intervals passed since 15 Oct 1582 00:00:00 GMT">Time</abbr>
  302. -  2 bit Variant (fix 0b10)
  303. -  6 bit Clock Sequence
  304. -  8 bit <abbr title="0 = person
  305. 1 = group
  306. 2 = org
  307. 3-255 = site-defined">Local Domain</abbr>
  308. - 48 bit MAC Address</pre></p>
  309.  
  310. <form method="GET" action="interprete_uuid.php">
  311.         <input type="hidden" name="version" value="2">
  312.         <label>Domain (8&nbsp;bits):</label><select name="domain_choose" id="dce_domain_choice" onchange="javascript:dce_domain_choose();">
  313.                 <option value="uid">Person (e.g. POSIX UID)</option>
  314.                 <option value="gid">Group (e.g. POSIX GID)</option>
  315.                 <option value="org">Organization</option>
  316.                 <option value="site">Site-defined</option>
  317.         </select> = Address Family ID: <input type="number" min="0" max="255" name="dce_domain" value="" id="dce_domain" style="width:50px" pattern="[0-9]+"> (decimal notation)<br>
  318.         <label>Value (32&nbsp;bits):</label><input type="number" min="0" max="4294967295" name="dce_id" value="0" id="dce_id" style="width:200px" pattern="[0-9]+"> (decimal notation)<br>
  319.         <font color="red">Warning</font>: The timestamp has an accuracy of 7:10 minutes,
  320.         therefore the uniqueness of these UUIDs is not guaranteed!<br><br>
  321.         <input type="hidden" name="uuid" value="CREATE"> <input type="submit" value="Create UUIDv2">
  322. </form>
  323. <script>
  324. function dce_domain_choose() {
  325.         var ns = document.getElementById('dce_domain_choice').value;
  326.         if (ns == "uid") {
  327.                 document.getElementById('dce_domain').value = "0";
  328.         }
  329.         if (ns == "gid") {
  330.                 document.getElementById('dce_domain').value = "1";
  331.         }
  332.         if (ns == "org") {
  333.                 document.getElementById('dce_domain').value = "2";
  334.         }
  335.         if (ns == "site") {
  336.                 document.getElementById('dce_domain').value = "";
  337.         }
  338. }
  339. dce_domain_choose();
  340. </script>
  341.  
  342. <h3 id="gen_uuidv35">Generate name-based (version 3 / 5 / <font color="green">New: 8</font>) UUID</h3>
  343.  
  344. <p><i>An UUIDv3 is made out of a MD5 hash and an UUIDv5 is made out of a SHA1 hash.
  345. The revision of RFC4122 also contains an example for a custom UUIDv8 that
  346. uses modern hash algorithms.</i></p>
  347.  
  348. <script>
  349. function show_uuidv35_info() {
  350.         document.getElementById("uuidv35_info_button").style.display = "none";
  351.         document.getElementById("uuidv35_info").style.display = "block";
  352. }
  353. </script>
  354. <p><a id="uuidv35_info_button" href="javascript:show_uuidv35_info()">Show format</a>
  355. <pre id="uuidv35_info" style="display:none">Variant 1, Version 3/5/8 UUID:
  356. - 48 bit Hash High
  357. -  4 bit Version (fix 0x3, 0x5, or 0x8)
  358. - 12 bit Hash Mid
  359. -  2 bit Variant (fix 0b10)
  360. - 62 bit Hash Low
  361.  
  362.  
  363. <u>As shown in <a href="https://datatracker.ietf.org/doc/draft-ietf-uuidrev-rfc4122bis/">draft-ietf-uuidrev-rfc4122bis-12</a> Appendix C.2:</u>
  364. UUIDv8(<i>HashAlgo</i>, <i>NameSpaceUuid</i>, <i>Data</i>) := <abbr title="Adds UUID variant 0b10 and version 8">ConvertRawBytesToUuid_v8</abbr>(<i>HashAlgo</i>( Binary[<i>NameSpaceUuid</i>] || <i>Data</i> )).
  365.  
  366. </pre></p>
  367.  
  368. <style>
  369. label {
  370.         width:120px;
  371.         text-align:left;
  372.         margin-right: 20px;
  373.         display:inline-block;
  374. }
  375. </style>
  376.  
  377. <form method="GET" action="interprete_uuid.php">
  378.         <label>Hash algorithm:</label><select name="version" id="nb_version" onchange="javascript:nb_version_choose();">
  379.                 <?php
  380.  
  381.                 echo "\t\t<option disabled>--- UUIDv3 (defined in RFC 4122) ---</option>\n";
  382.                 echo "\t\t<option value=\"3\">MD5</option>\n";
  383.                 echo "\t\t<option disabled>--- UUIDv5 (defined in RFC 4122) ---</option>\n";
  384.                 echo "\t\t<option value=\"5\" selected>SHA1</option>\n";
  385.                 echo "\t\t<option disabled>--- UUIDv8 (shown in Internet Draft 12, Appendix C.2) ---</option>\n";
  386.                 $tmp = [];
  387.                 $algos = hash_algos();
  388.                 $algos[] = 'shake128';
  389.                 $algos[] = 'shake256';
  390.                 foreach ($algos as $algo) {
  391.                         if ($algo == 'md5') continue; // use UUIDv3 instead
  392.                         if ($algo == 'sha1') continue; // use UUIDv5 instead
  393.                         $friendlyName = strtoupper($algo);
  394.  
  395.                         if ($algo == 'shake128') $bits = 999;
  396.                         else if ($algo == 'shake256') $bits = 999;
  397.                         else $bits = strlen(hash($algo, '', true)) * 8;
  398.                         if ($bits < 128) $friendlyName .= " (Small hash size! $bits bits)"; // <-- this is not described in Appendix C.2
  399.  
  400.                         $space = $algo;
  401.                         $tmp[$friendlyName] = '<option value="8_namebased_'.$space.'">'.htmlentities($friendlyName).'</option>';
  402.                 }
  403.                 natsort($tmp);
  404.                 foreach ($tmp as $html) {
  405.                         echo "\t\t$html\n";
  406.                 }
  407.  
  408.                 ?>
  409.         </select><br>
  410.         <label>Namespace:</label><select name="namespace_choose" id="nb_nsc" onchange="javascript:nb_ns_choose();">
  411.                 <option value="dns">DNS</option>
  412.                 <option value="url">URL</option>
  413.                 <option value="oid">OID</option>
  414.                 <option value="x500">X.500 DN</option>
  415.                 <!-- <option value="oidplus_ns">OIDplus ns only</option> -->
  416.                 <!-- <option value="oidplus_ns_val">OIDplus ns+val</option> -->
  417.                 <!-- <option value="oidplus_pubkey">OIDplus pubkey</option> -->
  418.                 <option value="other">Other</option>
  419.         </select> = Namespace UUID: <input type="text" name="nb_ns" value="" id="nb_ns" style="width:270px" onchange="javascript:nb_ns_textchange();" pattern="[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}"><br>
  420.         <label>Value:</label><input type="text" name="nb_val" value="" id="nb_val" style="width:300px"><br>
  421.         <font color="red">Warning</font>: These UUIDs do not contain a timestamp,
  422.         therefore the uniqueness of these UUIDs is not guaranteed!<br><br>
  423.         <input type="hidden" name="uuid" value="CREATE"> <input type="submit" id="nb_create_btn" value="Create UUID">
  424. </form>
  425. <script>
  426. function nb_version_choose() {
  427.         var ver = document.getElementById('nb_version').value;
  428.         document.getElementById('nb_create_btn').value = 'Create UUIDv' + ver.substr(0,1);
  429. }
  430. function nb_ns_textchange() {
  431.         var ns = document.getElementById('nb_ns').value.toLowerCase();
  432.         if (ns == "6ba7b810-9dad-11d1-80b4-00c04fd430c8") {
  433.                 if (document.getElementById('nb_nsc').value != "dns") {
  434.                         document.getElementById('nb_nsc').value = "dns";
  435.                         document.getElementById('nb_val').value = "www.example.com";
  436.                 }
  437.         }
  438.         else if (ns == "6ba7b811-9dad-11d1-80b4-00c04fd430c8") {
  439.                 if (document.getElementById('nb_nsc').value != "url") {
  440.                         document.getElementById('nb_nsc').value = "url";
  441.                         document.getElementById('nb_val').value = "http://www.example.com/";
  442.                 }
  443.         }
  444.         else if (ns == "6ba7b812-9dad-11d1-80b4-00c04fd430c8") {
  445.                 if (document.getElementById('nb_nsc').value != "oid") {
  446.                         document.getElementById('nb_nsc').value = "oid";
  447.                         document.getElementById('nb_val').value = "2.999";
  448.                 }
  449.         }
  450.         else if (ns == "6ba7b814-9dad-11d1-80b4-00c04fd430c8") {
  451.                 if (document.getElementById('nb_nsc').value != "x500") {
  452.                         document.getElementById('nb_nsc').value = "x500";
  453.                         document.getElementById('nb_val').value = "UID=jsmith,DC=example,DC=net";
  454.                 }
  455.         }
  456.         else {
  457.                 if (document.getElementById('nb_nsc').value != "other") {
  458.                         document.getElementById('nb_nsc').value = "other";
  459.                         document.getElementById('nb_val').value = "";
  460.                 }
  461.         }
  462. }
  463. function nb_ns_choose() {
  464.         var ns = document.getElementById('nb_nsc').value;
  465.         if (ns == "dns") {
  466.                 document.getElementById('nb_ns').value = "6ba7b810-9dad-11d1-80b4-00c04fd430c8";
  467.                 document.getElementById('nb_val').value = "www.example.com";
  468.         }
  469.         else if (ns == "url") {
  470.                 document.getElementById('nb_ns').value = "6ba7b811-9dad-11d1-80b4-00c04fd430c8";
  471.                 document.getElementById('nb_val').value = "http://www.example.com/";
  472.         }
  473.         else if (ns == "oid") {
  474.                 document.getElementById('nb_ns').value = "6ba7b812-9dad-11d1-80b4-00c04fd430c8";
  475.                 document.getElementById('nb_val').value = "2.999";
  476.         }
  477.         else if (ns == "x500") {
  478.                 document.getElementById('nb_ns').value = "6ba7b814-9dad-11d1-80b4-00c04fd430c8";
  479.                 document.getElementById('nb_val').value = "UID=jsmith,DC=example,DC=net";
  480.         }
  481.         /*
  482.         else if (ns == "oidplus_ns") {
  483.                 document.getElementById('nb_ns').value = "0943e3ce-4b79-11e5-b742-78e3b5fc7f22";
  484.                 document.getElementById('nb_val').value = "ipv4";
  485.         }
  486.         else if (ns == "oidplus_ns_val") {
  487.                 document.getElementById('nb_ns').value = "ad1654e6-7e15-11e4-9ef6-78e3b5fc7f22";
  488.                 document.getElementById('nb_val').value = "ipv4:8.8.8.8";
  489.         }
  490.         else if (ns == "oidplus_ns_pubkey") {
  491.                 document.getElementById('nb_ns').value = "fd16965c-8bab-11ed-8744-3c4a92df8582";
  492.                 document.getElementById('nb_val').value = "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqg/PnsC1WX3C1/mUSLuk0DIaDHtEsxBnG0auYJRJ1hBtbUUvItbK0odlKrX2SFo1MJJpu/SSxTzAgqkKZsZe3cCFkgA1svfuH9i94oGLjJ4n0kRJEGlanCmGndJBfIqGDJaQE2BJ8tLxeBrpkd9l0KvJsjhRmqJAb9KYK3KYFsWvT+wyjD3UJ1eHcgLbF/Qb3cwMU/u7Fs7ZpsNMW4phDPlsYsk9XHFpJ1/UCj6G53mYRfOC/ouDdGShlbVLB15s0V95QpnU/7lL8mJ2lE+sTZekGNBA4XbJv2gs21cR4E8zc/z+NyZS7117DYZoJqrAN8sKz6xGoKgQF6wueCK5qQIDAQAB";
  493.         }
  494.         */
  495.         else if (ns == "other") {
  496.                 document.getElementById('nb_ns').value = "";
  497.                 document.getElementById('nb_val').value = "";
  498.         }
  499. }
  500. nb_version_choose();
  501. nb_ns_choose();
  502. </script>
  503.  
  504. <h3 id="gen_uuidv8"><font color="green">New:</font> Generate Custom (version 8) UUID</h3>
  505.  
  506. <p><i>UUIDv8 is made of 122 bits application-specific / custom data. The other 6 bits are used to specify the variant and version of the UUID, to make it RFC-compatible.</i></p>
  507.  
  508. <script>
  509. function show_uuidv8_info() {
  510.         document.getElementById("uuidv8_info_button").style.display = "none";
  511.         document.getElementById("uuidv8_info").style.display = "block";
  512. }
  513. function uuidv8_changedec(block, len) {
  514.         var x = document.getElementById("v8_block"+block+"_dec").value;
  515.         if (x.trim() == "") x = 0;
  516.         x = parseInt(x);
  517.         if (isNaN(x)) {
  518.                 x = "???";
  519.         } else {
  520.                 x = x.toString(16).padStart(len, '0');
  521.                 if ((len > 0) && (x.length > len)) x = "Overflow";
  522.         }
  523.         document.getElementById("v8_block"+block+"_hex").value = x;
  524. }
  525. function uuidv8_changehex(block, len) {
  526.         var x = document.getElementById("v8_block"+block+"_hex").value;
  527.         if (x.trim() == "") x = 0;
  528.         x = parseInt(x, 16);
  529.         if (isNaN(x)) {
  530.                 x = "???";
  531.         } else {
  532.                 x = x.toString().padStart(len, '0');
  533.                 if ((len > 0) && (x.length > len)) x = "Overflow"; // Note: For block 3/4, the overflow actually happens at 12/14 bits, not at 4 nibbles (16 bits)
  534.         }
  535.         document.getElementById("v8_block"+block+"_dec").value = x;
  536. }
  537. </script>
  538. <p><a id="uuidv8_info_button" href="javascript:show_uuidv8_info()">Show format</a>
  539. <pre id="uuidv8_info" style="display:none">Variant 1, Version 8 UUID:
  540. - 48 bit Custom data [Block 1+2]
  541. -  4 bit Version (fix 0x8)
  542. - 12 bit Custom data [Block 3]
  543. -  2 bit Variant (fix 0b10)
  544. - 62 bit Custom data [Block 4+5]</pre></p>
  545.  
  546. <form method="GET" action="interprete_uuid.php">
  547.         <input type="hidden" name="version" value="8">
  548.  
  549.         <label>Block&nbsp;1 (32&nbsp;bits):</label>0x<input type="text" name="block1" value="00000000" maxlength="8" id="v8_block1_hex" onkeyup="uuidv8_changehex(1, 0)" style="width:150px" pattern="[0-9a-fA-F]+"> = Decimal
  550.         <input type="number" name="block1dec" value="0" min="0" maxlength="20" id="v8_block1_dec" onmouseup="uuidv8_changedec(1, 8)" onkeyup="uuidv8_changedec(1, 8)" style="width:150px"><br>
  551.  
  552.         <label>Block&nbsp;2 (16&nbsp;bits):</label>0x<input type="text" name="block2" value="0000" maxlength="4" id="v8_block2_hex" onkeyup="uuidv8_changehex(2, 0)" style="width:150px" pattern="[0-9a-fA-F]+"> = Decimal
  553.         <input type="number" name="block2dec" value="0" min="0" maxlength="20" id="v8_block2_dec" onmouseup="uuidv8_changedec(2, 4)" onkeyup="uuidv8_changedec(2, 4)" style="width:150px"><br>
  554.  
  555.         <label>Block&nbsp;3 (<abbr title="The high 4 bits are occupied by the UUID version = 8">12&nbsp;bits</abbr>):</label>0x<input type="text" name="block3" value="0000" maxlength="4" id="v8_block3_hex" onkeyup="uuidv8_changehex(3, 0)" style="width:150px" pattern="[0-9a-fA-F]+"> = Decimal
  556.         <input type="number" name="block3dec" value="0" min="0" maxlength="20" id="v8_block3_dec" onmouseup="uuidv8_changedec(3, 4)" onkeyup="uuidv8_changedec(3, 4)" style="width:150px"><br>
  557.  
  558.         <label>Block&nbsp;4 (<abbr title="The high 2 bits are occupied by the UUID variant = 0b10">14&nbsp;bits</abbr>):</label>0x<input type="text" name="block4" value="0000" maxlength="4" id="v8_block4_hex" onkeyup="uuidv8_changehex(4, 0)" style="width:150px" pattern="[0-9a-fA-F]+"> = Decimal
  559.         <input type="number" name="block4dec" value="0" min="0" maxlength="20" id="v8_block4_dec" onmouseup="uuidv8_changedec(4, 4)" onkeyup="uuidv8_changedec(4, 4)" style="width:150px"><br>
  560.  
  561.         <label>Block&nbsp;5 (48&nbsp;bits):</label>0x<input type="text" name="block5" value="000000000000" maxlength="12" id="v8_block5_hex" onkeyup="uuidv8_changehex(5, 0)" style="width:150px" pattern="[0-9a-fA-F]+"> = Decimal
  562.         <input type="number" name="block5dec" value="0" min="0" maxlength="20" id="v8_block5_dec" onmouseup="uuidv8_changedec(5, 12)" onkeyup="uuidv8_changedec(5, 12)" style="width:150px"><br>
  563.  
  564.         <font color="red">Warning</font>: These UUIDs do not contain a timestamp,
  565.         therefore the uniqueness of these UUIDs is not guaranteed!<br><br>
  566.         <input type="hidden" name="uuid" value="CREATE"> <input type="submit" value="Create UUIDv8">
  567. </form>
  568.  
  569. <h2 id="interpret_uuid">Interpret a UUID</h2>
  570.  
  571. <p>You can enter a UUID in the following notations:</p>
  572.  
  573. <ul>
  574.         <li>Classic notation (case insensitive, curly braces optional): <code>9e83839a-5967-11e4-8c1c-78e3b5fc7f22</code></li>
  575.         <li>As OID: <code>2.25.210700883446948645633376489934419689250</code></li>
  576. </ul>
  577.  
  578. <p>The script will output:</p>
  579.  
  580. <ul>
  581.         <li>Notation as UUID and OID</li>
  582.         <li>Version, variant, and additional data (date and time, clock sequence, node id, etc.)</li>
  583. </ul>
  584.  
  585. <p>Please enter a UUID or UUID OID:</p>
  586.  
  587. <form method="GET" action="interprete_uuid.php">
  588.         <input type="text" name="uuid" value="" style="width:300px"> <input type="submit" value="Interprete">
  589. </form>
  590.  
  591. <h2 id="interpret_mac">Interpret a MAC address (<abbr title="Media Access Control">MAC</abbr> /
  592. <abbr title="Extended Unique Identifier">EUI</abbr> /
  593. <abbr title="Extended Local Identifier">ELI</abbr> /
  594. <abbr title="Standard Assigned Identifier">SAI</abbr> /
  595. <abbr title="Administratively Assigned Identifier">AAI</abbr>)</h2>
  596.  
  597. <p>You can enter a UUID in the following notations:</p>
  598.  
  599. <ul>
  600.         <li><code>AA-BB-CC-DD-EE-FF</code></li>
  601.         <li><code>AA:BB:CC:DD:EE:FF</code></li>
  602.         <li><code>AABBCC.DDEEFF</code> (case insensitive)</li>
  603.         <li><code>AA-BB-CC-DD-EE-FF-11-22</code> (EUI-64)</li>
  604.         <li><code>AA:BB:CC:DD:EE:FF-11-22</code> (EUI-64)</li>
  605.         <li><code>fe80::1322:33ff:fe44:5566</code> (IPv6 Link Local / EUI-64)</li>
  606. </ul>
  607.  
  608. <p>The script will output:</p>
  609.  
  610. <ul>
  611.         <li>Information about the I/G and U/L flags.</li>
  612.         <li>Information about the entry in the IEEE registry, if available.</li>
  613.         <li>Information about the registrant, if available.</li>
  614. </ul>
  615.  
  616. <p>Please enter a MAC (EUI, ELI, SAI, AAI), or IPv6-Link-Local address:</p>
  617.  
  618. <form method="GET" action="interprete_mac.php">
  619.         <input type="text" name="mac" value="" style="width:250px"> <input type="submit" value="Interprete">
  620. </form>
  621.  
  622. <h3 id="gen_aai">Generate an <abbr title="Administratively Assigned Identifier">AAI</abbr></h3>
  623.  
  624. <p><i>An Administratively Assigned Identifier (AAI) is a MAC address which can be locally defined
  625. by applications or an administrator. Unlike the EUI, an AAI is NOT worldwide unique.</i></p>
  626.  
  627. <form method="GET" action="interprete_mac.php">
  628.     <input type="hidden" name="aai_gen" value="1">
  629.     <input type="hidden" name="aai_gen_bits" value="48">
  630.     <input type="hidden" name="aai_gen_multicast" value="0">
  631.     <input type="hidden" name="uuid" value="CREATE"> <input type="submit" value="Generate AAI-48">
  632. </form>
  633.  
  634. <br>
  635.  
  636. <form method="GET" action="interprete_mac.php">
  637.     <input type="hidden" name="aai_gen" value="1">
  638.     <input type="hidden" name="aai_gen_bits" value="64">
  639.     <input type="hidden" name="aai_gen_multicast" value="0">
  640.     <input type="hidden" name="uuid" value="CREATE"> <input type="submit" value="Generate AAI-64">
  641. </form>
  642.  
  643. <p>The following options are rather unusual, but are implemented for the sake of completeness:</p>
  644.  
  645. <form method="GET" action="interprete_mac.php">
  646.     <input type="hidden" name="aai_gen" value="1">
  647.     <input type="hidden" name="aai_gen_bits" value="48">
  648.     <input type="hidden" name="aai_gen_multicast" value="1">
  649.     <input type="hidden" name="uuid" value="CREATE"> <input type="submit" value="Generate Multicast AAI-48">
  650. </form>
  651.  
  652. <br>
  653.  
  654. <form method="GET" action="interprete_mac.php">
  655.     <input type="hidden" name="aai_gen" value="1">
  656.     <input type="hidden" name="aai_gen_bits" value="64">
  657.     <input type="hidden" name="aai_gen_multicast" value="1">
  658.     <input type="hidden" name="uuid" value="CREATE"> <input type="submit" value="Generate Multicast AAI-64">
  659. </form>
  660.  
  661. <br><br><br>
  662.  
  663. </body>
  664.  
  665. </html>
  666.