jquery完整性可以生成还是可以复制?

问题描述

我目前正在使用以下链接来使用 jquery:

<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>

我从一个网站复制了这个链接。 我知道从代码生成一个哈希值,看看它是否被操纵过。

我的问题是我是否必须为我的网站生成自己的哈希值,还是可以使用复制的哈希值,因为无论如何我都会想出相同的哈希值?

解决方法

<!DOCTYPE html>
 <html>
  <head>
    <title>Jquery integrity can be generate</title>
  </head>
 <script 
 src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
 </script>
 <body>
  <input type="text" id="number" />
  <span id="display"></span>
 </body>
</html>