Authentication#

Requests to the object storage can be either authenticated or unauthenticated. Unauthenticated requests can be sent by anonymous users.

NGN Cloud object storage supports the following versions of AWS authentication:

  • Signature Version 2 (AWSv2);

  • Signature Version 4 (AWSv4).

Authenticated requests must contain the Authorization header. The header for request authentication according to AWSv4 includes the following parameters:

Parameter

Description

AWS4-HMAC-SHA256

AWS signature type (AWS4) and signature algorithm (HMAC-SHA256)

Credential

Access key and request information in the format: <access-key>/<data>/<region>/<service>/aws4_request

SignedHeaders

List of headers used in the signature calculation in lower case and in alphabetical order, for example, host;x-amz-content-sha256;x-amz-date

Signature

A request authentication signature calculated using the access key, request body hash, and request in canonical representation.

Sample header for the request authentication:

Authorization: AWS4-HMAC-SHA256
Credential=project:user@company/20220603/{region}/s3/aws4_request,
SignedHeaders=host;x-amz-content-sha256;x-amz-date,
Signature=897f92a12dbd98b20bd133efc8ffa9011eac346ffa73065928368f32311b88a4

Note

If you plan to make REST API calls directly from the code, you must independently calculate the call authentication signature. This is a rather cumbersome procedure, so we recommend using AWS CLI or S3cmd to work with API.

if AWS Signature Version 4 is used for authentication, the signature is calculated as follows.

Request signature#

Signature calculation consists of four main steps:

  1. Forming a canonical header. A canonical header includes:

    • HTTP request method used.

    • Path component from the request.

    • Request parameters in alphabetical order. If there are no parameters, then an empty string is inserted.

    • A list of headers to be signed and their values, separated by a colon. Headers are listed alphabetically in lower case without spaces. Each pair of headers and values starts on a new line (\n).

    • List of headers to be signed without values in lower case. The headers are listed in alphabetical order and separated by a semicolon.

    • SHA256 hash of the request body in hexadecimal notation. If there is no request body, then the empty string hash is calculated.

    Each component of the canonical header starts on a new line.

    Thus, for the request

    GET /?acl HTTP/1.1
    Host: bucket1.s3.cloud.ngn.com.tr
    X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    X-Amz-Date: 20220603T153057Z
    

    the canonical representation is as follows:

    GET
    /
    acl=
    host:bucket1.s3.cloud.ngn.com.tr
    x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    x-amz-date:20220603T153057Z
    
    host;x-amz-content-sha256;x-amz-date
    e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    
  2. Generation of the string being signed. Such generation process uses the hexadecimal representation of the SHA256 hash of the canonical request generated in the previous step.

    StringToSign = "AWS4-HMAC-SHA256" + "\n" +
      <YYYYMMDD'T'HHMMSS'Z'> + "\n" +
      <YYYYMMDD> + "/" + "ngn" + "/" + "s3/aws4_request" + "\n" +
      Hex(SHA256Hash(<СanonicalRequest>))
    

    For the canonical header from the previous step, the to-be-signed string is as follows:

    AWS4-HMAC-SHA256
    20220603T153057Z
    20220603/{region}/s3/aws4_request
    c0420ae48bd16933479d329da423533374747b40f53d09e2b38e5cb0b5354b4f
    
  3. Calculation of the signing key. The key is calculated on the basis of the secret access key, which is contained in the API access settings (you can download the settings from your profile in the cloud console).

    To obtain the signing key, four message authentication codes (HMAC) are sequentially calculated using the SHA256 hash function. The respective functions are included in many programming languages. When calculating keys, you should use a binary digest rather than a hexadecimal hash (hex-digest).

    DateKey              = HMAC-SHA256("AWS4" + "<SecretAccessKey>", "<YYYYMMDD>"))
    DateRegionKey        = HMAC-SHA256(<DateKey>, "ngn")
    DateRegionServiceKey = HMAC-SHA256(<DateRegionKey>, "s3")
    SigningKey           = HMAC-SHA256(<DateRegionServiceKey>, "aws4_request")
    

    For example, for a secret key

    SecretAccessKey = '7w!z%C&F)J@NcRfUjXn2r5u8x/A?D(G-'
    

    the corresponding signing key will look as follows (in hexadecimal notation):

    SigningKey = 738870d49901e5bd8c45a25014753c2f767c1e771250d0f4a6da6769ff6ef06a
    
  4. Signature calculation.

    To calculate the signature, the same hashing function with a key is used as to calculate the keys themselves. The signing key (SigningKey) and the string to be signed (StringToSign) are passed as input parameters. The result should be converted to hexadecimal format.

    Signature = Hex(HMAC-SHA256(<SigningKey>,<StringToSign>))
    

    Signature example:

    e9c4653776e613f24e74fff7e37ed7cac817a4921a0ead6e2bd667759ab33aed
    

For more details on how to generate a signature for request authentication, see the Amazon S3 documentation.