From ba3f062324e54d21c642b0fd3ceb6c7c21604d77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Tosser?= Date: Thu, 15 Oct 2020 12:45:43 +0400 Subject: [PATCH] Add HMAC-SHA256 for Oauth 1 (#1055) --- packages/nodes-base/credentials/OAuth1Api.credentials.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/nodes-base/credentials/OAuth1Api.credentials.ts b/packages/nodes-base/credentials/OAuth1Api.credentials.ts index c0d61895f3..82e114b523 100644 --- a/packages/nodes-base/credentials/OAuth1Api.credentials.ts +++ b/packages/nodes-base/credentials/OAuth1Api.credentials.ts @@ -56,6 +56,10 @@ export class OAuth1Api implements ICredentialType { name: 'HMAC-SHA256', value: 'HMAC-SHA256' }, + { + name: 'HMAC-SHA512', + value: 'HMAC-SHA512' + }, ], default: '', required: true,