From 800fbfd812cd1ea9b241ccd82a4ba2788f4b11f8 Mon Sep 17 00:00:00 2001 From: Peter Solymos Date: Wed, 19 Apr 2023 20:09:32 -0600 Subject: [PATCH 1/2] ses missing signedEncryptionScope is needed for string-to-sign for authorization version 2020-12-06 and later Signed-off-by: Peter Solymos --- R/sas.R | 1 + 1 file changed, 1 insertion(+) diff --git a/R/sas.R b/R/sas.R index d33a6b6..817c4c2 100644 --- a/R/sas.R +++ b/R/sas.R @@ -366,6 +366,7 @@ get_service_sas.default <- function(account, resource, key, service, start=NULL, ip, protocol, auth_api_version, + "", # ses not yet implemented "", # rscc, rscd, rsce, rscl, rsct not yet implemented "", "", From fbecd8ad34bf0375f22c5208a6820e705e7e23ce Mon Sep 17 00:00:00 2001 From: Peter Solymos Date: Wed, 19 Apr 2023 20:20:48 -0600 Subject: [PATCH 2/2] Add ses to service SAS Version 2020-12-06 adds support for the signed encryption scope field Signed-off-by: Peter Solymos --- R/sas.R | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/R/sas.R b/R/sas.R index 817c4c2..d236e4b 100644 --- a/R/sas.R +++ b/R/sas.R @@ -257,7 +257,8 @@ get_user_delegation_sas.default <- function(account, key, resource, start=NULL, auth_api_version, resource_type, snapshot_time, - "", + "", # ses not yet implemented + "", # rscc, rscd, rsce, rscl, rsct not yet implemented "", "", "", @@ -350,6 +351,7 @@ get_service_sas.default <- function(account, resource, key, service, start=NULL, auth_api_version, resource_type, snapshot_time, + "", # ses not yet implemented "", # rscc, rscd, rsce, rscl, rsct not yet implemented "", "",