Skip to content
/ sri Public

Helper to calculate SRI information for `<link>` or `<script>` tags

License

Notifications You must be signed in to change notification settings

Luzifer/sri

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go Report Card

Luzifer / sri

sri is a very small helper to calculate SRI information for <link> or <script> tags.

Files are downloaded as they currently are and a checksum is calculated. This checksum then is printed inside the desired HTML tag for embedding into an HTML page.

Please be aware you should use this with non-changing URLs as the browser will no longer load the file as soon as the hash does no longer match.

Usage

# sri --help
Usage of sri:
      --html               Print HTML tags with SRI information (If disabled just prints the hashes) (default true)
      --html-tag string    Tag to use for HTML mode (supported: link, script) (default "link")
      --log-level string   Log level (debug, info, warn, error, fatal) (default "info")
      --version            Prints current version and exits

# sri --html-tag link https://use.fontawesome.com/releases/v5.10.1/css/all.css
<link href="https://use.fontawesome.com/releases/v5.10.1/css/all.css" integrity="sha512-9my9Mb2+0YO+I4PUCSwUYO7sEK21Y0STBAiFEYoWtd2VzLEZZ4QARDrZ30hdM1GlioHJ8o8cWQiy8IAb1hy/Hg==" crossorigin="anonymous">