Skip to content

Latest commit

 

History

History
executable file
·
46 lines (38 loc) · 1.42 KB

File metadata and controls

executable file
·
46 lines (38 loc) · 1.42 KB
title Supporting Entities
parent Secure Chain
nav_order 10

Supporting Entities

The development of the Secure Chain tools has been made possible thanks to the support of the following institutions:

Their guidance, research environment, and institutional backing have helped shape the mission of Secure Chain to advance security in the software supply chain.

We gratefully acknowledge their contributions.

🌕

<script> const toggleDarkMode = document.querySelector('.js-toggle-dark-mode'); jtd.addEvent(toggleDarkMode, 'click', function () { if (jtd.getTheme() === 'dark') { jtd.setTheme('light'); toggleDarkMode.textContent = '🌕'; } else { jtd.setTheme('dark'); toggleDarkMode.textContent = '☀️'; } }); </script>