Skip to content

Commit

Permalink
title change and link fix
Browse files Browse the repository at this point in the history
  • Loading branch information
theo-barfoot committed Apr 23, 2024
1 parent 5015938 commit e5d76d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SHA1 in Browser: Anonymised ID Generation
# Pseudo-Anonymised ID Generation

This comment has been minimized.

Copy link
@tvercaut

tvercaut Apr 26, 2024

Member

There is a typo to fix here and copy-pasted elsewhere


This web-based interface enables the use of the SHA-1 hashing algorithm on CSV files for the generation of pseudo-anonymised IDs, currently used for the AIMBraTS project. The application operates entirely client-side, ensuring that no data is transmitted outside of the local machine. To begin, simply open go to: [Compute SHA-1 from CSV in Browser](https://cai4cai.ml)
This interface enables the use of the SHA-1 hashing algorithm on CSV files for the generation of pseudo-anonymised IDs, currently used for the AIMBraTS project. The application operates entirely client-side, ensuring that no data is transmitted outside of the local machine. To begin, simply go to: [Pseudo-Anonymised ID Generator](https://cai4cai.ml/sha1inbrowser/)

## Motivation

Expand All @@ -16,7 +16,7 @@ The key advantage of this approach to generating pseudo-anonymised IDs is that w
Ensure each NHS number in your dataset is 10 digits long without any spaces. Errors in this data will lead to incorrect hashing.

### Step 1: Access the Application
Navigate to [Compute SHA-1 from CSV in Browser](https://cai4cai.ml).
Navigate to the [Pseudo-Anonymised ID Generator](https://cai4cai.ml/sha1inbrowser/).

> **Note:** This HTML application, which is accessed and viewed via a web browser, runs locally on your own machine, and no data is transmitted outside of the local machine, when used.
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="referrer" content="no-referrer" />
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; style-src-elem 'self' 'unsafe-inline'; script-src 'self' https://cdnjs.cloudflare.com 'unsafe-inline' 'unsafe-eval'; img-src 'self'" >
<meta http-equiv="Permissions-Policy" content="accelerometer=(), ambient-light-sensor=(), autoplay=(), battery=(), camera=(), cross-origin-isolated=(), display-capture=(), document-domain=(), encrypted-media=(), execution-while-not-rendered=(), execution-while-out-of-viewport=(), fullscreen=(), geolocation=(), gyroscope=(), keyboard-map=(), magnetometer=(), microphone=(), midi=(), navigation-override=(), payment=(), picture-in-picture=(), publickey-credentials-get=(), screen-wake-lock=(), sync-xhr=(), usb=(), web-share=(), xr-spatial-tracking=(), clipboard-read=(), clipboard-write=(), gamepad=(), speaker-selection=(), conversion-measurement=(), focus-without-user-activation=(), hid=(), idle-detection=(), interest-cohort=(), serial=(), sync-script=(), trust-token-redemption=(), unload=(), window-placement=(), vertical-scroll=()" >
<title>Compute SHA-1 from CSV in browser</title>
<title>Psuedo-Anonymised ID Generator</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<style>
#options, #preview, #loading, #hashing {
Expand All @@ -32,7 +32,7 @@
<div id="privacyNotice">
Please NOTE: No data from the CSV file leaves your device. All processing is done locally.
</div>
<h1>SHA1 in Browser: Anonymised ID Generation</h1>
<h1>Psuedo-Anonymised ID Generator - from .csv</h1>
<form id="myForm">
<input type="file" id="csvFile" accept=".csv" />
<br />
Expand Down Expand Up @@ -61,7 +61,7 @@ <h1>Data preview</h1>
<footer>
<p>

<a href="https://github.com/cai4cai/sha1inbrowser/blob/main/README.md">Usage Notes</a> |
<a href="https://github.com/cai4cai/sha1inbrowser/blob/main/README.md">Instructions for use</a> |
<a href="https://cai4cai.ml/terms/">Terms of Service</a> |
<a href="https://cai4cai.ml/privacy/">Privacy Policy</a> |
<a href="https://github.com/cai4cai/sha1inbrowser">View Source on GitHub</a>
Expand Down

0 comments on commit e5d76d5

Please sign in to comment.