1 | export declare const ALGORITHM_QUERY_PARAM = "X-Amz-Algorithm";
|
2 | export declare const CREDENTIAL_QUERY_PARAM = "X-Amz-Credential";
|
3 | export declare const AMZ_DATE_QUERY_PARAM = "X-Amz-Date";
|
4 | export declare const SIGNED_HEADERS_QUERY_PARAM = "X-Amz-SignedHeaders";
|
5 | export declare const EXPIRES_QUERY_PARAM = "X-Amz-Expires";
|
6 | export declare const SIGNATURE_QUERY_PARAM = "X-Amz-Signature";
|
7 | export declare const TOKEN_QUERY_PARAM = "X-Amz-Security-Token";
|
8 | export declare const REGION_SET_PARAM = "X-Amz-Region-Set";
|
9 | export declare const AUTH_HEADER = "authorization";
|
10 | export declare const AMZ_DATE_HEADER: string;
|
11 | export declare const DATE_HEADER = "date";
|
12 | export declare const GENERATED_HEADERS: string[];
|
13 | export declare const SIGNATURE_HEADER: string;
|
14 | export declare const SHA256_HEADER = "x-amz-content-sha256";
|
15 | export declare const TOKEN_HEADER: string;
|
16 | export declare const HOST_HEADER = "host";
|
17 | export declare const ALWAYS_UNSIGNABLE_HEADERS: {
|
18 | authorization: boolean;
|
19 | "cache-control": boolean;
|
20 | connection: boolean;
|
21 | expect: boolean;
|
22 | from: boolean;
|
23 | "keep-alive": boolean;
|
24 | "max-forwards": boolean;
|
25 | pragma: boolean;
|
26 | referer: boolean;
|
27 | te: boolean;
|
28 | trailer: boolean;
|
29 | "transfer-encoding": boolean;
|
30 | upgrade: boolean;
|
31 | "user-agent": boolean;
|
32 | "x-amzn-trace-id": boolean;
|
33 | };
|
34 | export declare const PROXY_HEADER_PATTERN: RegExp;
|
35 | export declare const SEC_HEADER_PATTERN: RegExp;
|
36 | export declare const UNSIGNABLE_PATTERNS: RegExp[];
|
37 | export declare const ALGORITHM_IDENTIFIER = "AWS4-HMAC-SHA256";
|
38 | export declare const ALGORITHM_IDENTIFIER_V4A = "AWS4-ECDSA-P256-SHA256";
|
39 | export declare const EVENT_ALGORITHM_IDENTIFIER = "AWS4-HMAC-SHA256-PAYLOAD";
|
40 | export declare const UNSIGNED_PAYLOAD = "UNSIGNED-PAYLOAD";
|
41 | export declare const MAX_CACHE_SIZE = 50;
|
42 | export declare const KEY_TYPE_IDENTIFIER = "aws4_request";
|
43 | export declare const MAX_PRESIGNED_TTL: number;
|