You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,14 +5,14 @@ This library has zero depdendencies.
5
5
6
6
We used it in our [sepa-form-recogizer](https://neurocode.io/blog/sepa-payment-recognizer?s=github) API
7
7
8
-
## Whats a SAS token?
8
+
## What is a SAS token?
9
9
10
10

11
11
12
12
13
-
SAS token is a string that you generate on give your client for temp access to your Azure storage. The Azure Storage client library does not work in the browser since it uses NodeJS crypto to compute the HMAC SHA256.
13
+
SAS token is a string that you generate and give your client for temp access to your Azure storage. The Azure Storage client library does not work in the browser since it uses NodeJS crypto to compute the HMAC SHA256.
14
14
15
-
This library uses webCrypto to compute the HMAC SHA and is thus compatible with cloudflare workers.
15
+
This library uses webCrypto to compute the HMAC SHA256 and is thus compatible with cloudflare workers.
Be careful with **startsOn** property. If you set the start time for a SAS to the current time, you may observe failures occurring intermittently for the first few minutes due to different machines having slight variations the current time (known as clock skew).
44
+
Be careful with **startsOn** property. If you set the start time for a SAS to the current time, you may observe failures occurring intermittently for the first few minutes due to different machines having slight variations of the current time (known as clock skew).
45
45
46
46
In general, set the start time to be at least 15 minutes in the past. Or, don't set it at all :)
0 commit comments