Skip to content

Commit 85049b5

Browse files
committed
chore(signature-v4a): constants access annotations
1 parent 11ccd49 commit 85049b5

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

packages/signature-v4a/src/constants.ts

+11-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,22 @@ import { REGION_SET_PARAM } from "@smithy/signature-v4";
55
*/
66
export const REGION_HEADER = REGION_SET_PARAM.toLowerCase();
77

8+
9+
10+
// AWS SigV4a private signing key constants
811
/**
912
* @internal
10-
*
11-
* AWS SigV4a private signing key constants
12-
*
1313
*/
1414
export const ONE_AS_4_BYTES = [0x00, 0x00, 0x00, 0x01];
15+
16+
/**
17+
* @internal
18+
*/
1519
export const TWOFIFTYSIX_AS_4_BYTES = [0x00, 0x00, 0x01, 0x00];
20+
21+
/**
22+
* @internal
23+
*/
1624
export const N_MINUS_TWO = [
1725
0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbc, 0xe6, 0xfa,
1826
0xad, 0xa7, 0x17, 0x9e, 0x84, 0xf3, 0xb9, 0xca, 0xc2, 0xfc, 0x63, 0x25, 0x4f,

0 commit comments

Comments
 (0)