forked from oakserver/oak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
keyStack.ts
71 lines (61 loc) · 2.32 KB
/
keyStack.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Copyright 2018-2020 the oak authors. All rights reserved. MIT license.
// This was inspired by [keygrip](https://github.com/crypto-utils/keygrip/)
// which allows signing of data (cookies) to prevent tampering, but also allows
// for easy key rotation without needing to resign the data.
import { HmacSha256 } from "./deps.ts";
import { compare } from "./tssCompare.ts";
export type Data = string | number[] | ArrayBuffer | Uint8Array;
export type Key = string | number[] | ArrayBuffer | Uint8Array;
const replacements: Record<string, string> = {
"/": "_",
"+": "-",
"=": "",
};
export class KeyStack {
#keys: Key[];
/** A class which accepts an array of keys that are used to sign and verify
* data and allows easy key rotation without invalidation of previously signed
* data.
*
* @param keys An array of keys, of which the index 0 will be used to sign
* data, but verification can happen against any key.
*/
constructor(keys: Key[]) {
if (!(0 in keys)) {
throw new TypeError("keys must contain at least one value");
}
this.#keys = keys;
}
#sign = (data: Data, key: Key): string => {
return btoa(
String.fromCharCode.apply(
undefined,
new Uint8Array(new HmacSha256(key).update(data).arrayBuffer()) as any,
),
)
.replace(/\/|\+|=/g, (c) => replacements[c]);
};
/** Take `data` and return a SHA256 HMAC digest that uses the current 0 index
* of the `keys` passed to the constructor. This digest is in the form of a
* URL safe base64 encoded string. */
sign(data: Data): string {
return this.#sign(data, this.#keys[0]);
}
/** Given `data` and a `digest`, verify that one of the `keys` provided the
* constructor was used to generate the `digest`. Returns `true` if one of
* the keys was used, otherwise `false`. */
verify(data: Data, digest: string): boolean {
return this.indexOf(data, digest) > -1;
}
/** Given `data` and a `digest`, return the current index of the key in the
* `keys` passed the constructor that was used to generate the digest. If no
* key can be found, the method returns `-1`. */
indexOf(data: Data, digest: string): number {
for (let i = 0; i < this.#keys.length; i++) {
if (compare(digest, this.#sign(data, this.#keys[i]))) {
return i;
}
}
return -1;
}
}