summaryrefslogtreecommitdiff
path: root/src/@types
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2020-05-09 08:21:42 +0900
committerGitHub <noreply@github.com>2020-05-09 08:21:42 +0900
commit070f1f3c6ee3188e1b16236366877c1c243601c1 (patch)
treef77fa43be8524698bc9e46246748a3163dbd4a7a /src/@types
parentWebAuthnでログインできないのを修正 (#6327) (diff)
downloadsharkey-070f1f3c6ee3188e1b16236366877c1c243601c1.tar.gz
sharkey-070f1f3c6ee3188e1b16236366877c1c243601c1.tar.bz2
sharkey-070f1f3c6ee3188e1b16236366877c1c243601c1.zip
APリファクタとLD-Signatureの検証に対応 (#6300)
* DbResolver * inbox types * 認証順を変更 * User/Keyあたりをまとめる * LD-Signatue * Validate contexts url * LD-Signature DocumentLoaderにProxyとTimeout
Diffstat (limited to 'src/@types')
-rw-r--r--src/@types/http-signature.d.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/@types/http-signature.d.ts b/src/@types/http-signature.d.ts
index 6366b2addd..8d484312dc 100644
--- a/src/@types/http-signature.d.ts
+++ b/src/@types/http-signature.d.ts
@@ -19,10 +19,12 @@ declare module 'http-signature' {
clockSkew?: number;
}
- interface IParsedSignature {
+ interface IParsedSignature {
scheme: string;
params: ISignature;
signingString: string;
+ algorithm: string;
+ keyId: string;
}
type RequestSignerConstructorOptions =