Sha256: dae57287e59fd9bb9a9e1a7206e5e7413a571bb2b82b0a7b21d50dba600218e1

Contents?: true

Size: 1.46 KB

Versions: 13

Compression:

Stored size: 1.46 KB

Contents

#ifndef AWS_AUTH_KEY_DERIVATION_H
#define AWS_AUTH_KEY_DERIVATION_H

/**
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 */

#include <aws/auth/auth.h>

struct aws_byte_buf;

AWS_EXTERN_C_BEGIN

/*
 * Some utility functions used while deriving an ecc key from aws credentials.
 *
 * The functions operate on the raw bytes of a buffer, treating them as a (base 255) big-endian
 * integer.
 */

/**
 * Compares two byte buffers lexically.  The buffers must be of equal size.  Lexical comparison from front-to-back
 * corresponds to arithmetic comparison when the byte sequences are considered to be big-endian large integers.
 * The output parameter comparison_result is set to:
 *   -1 if lhs_raw_be_bigint < rhs_raw_be_bigint
 *    0 if lhs_raw_be_bigint == rhs_raw_be_bigint
 *    1 if lhs_raw_be_bigint > rhs_raw_be_bigint
 *
 * @return AWS_OP_SUCCESS or AWS_OP_ERR
 *
 * This is a constant-time operation.
 */
AWS_AUTH_API
int aws_be_bytes_compare_constant_time(
    const struct aws_byte_buf *lhs_raw_be_bigint,
    const struct aws_byte_buf *rhs_raw_be_bigint,
    int *comparison_result);

/**
 * Adds one to a big integer represented as a sequence of bytes (in big-endian order).  A maximal (unsigned) value
 * will roll over to 0.
 *
 * This is a constant-time operation.
 */
AWS_AUTH_API
void aws_be_bytes_add_one_constant_time(struct aws_byte_buf *raw_be_bigint);

AWS_EXTERN_C_END

#endif /* AWS_AUTH_KEY_DERIVATION_H */

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
aws-crt-0.4.0 aws-crt-ffi/crt/aws-c-auth/include/aws/auth/private/key_derivation.h
aws-crt-0.3.0 aws-crt-ffi/crt/aws-c-auth/include/aws/auth/private/key_derivation.h
aws-crt-0.2.1 aws-crt-ffi/crt/aws-c-auth/include/aws/auth/private/key_derivation.h
aws-crt-0.2.0 aws-crt-ffi/crt/aws-c-auth/include/aws/auth/private/key_derivation.h
aws-crt-0.1.9 aws-crt-ffi/crt/aws-c-auth/include/aws/auth/private/key_derivation.h
aws-crt-0.1.8 aws-crt-ffi/crt/aws-c-auth/include/aws/auth/private/key_derivation.h
aws-crt-0.1.7 aws-crt-ffi/crt/aws-c-auth/include/aws/auth/private/key_derivation.h
aws-crt-0.1.6 aws-crt-ffi/crt/aws-c-auth/include/aws/auth/private/key_derivation.h
aws-crt-0.1.5 aws-crt-ffi/crt/aws-c-auth/include/aws/auth/private/key_derivation.h
aws-crt-0.1.4 aws-crt-ffi/crt/aws-c-auth/include/aws/auth/private/key_derivation.h
aws-crt-0.1.2 aws-crt-ffi/crt/aws-c-auth/include/aws/auth/private/key_derivation.h
aws-crt-0.1.1.pre native/crt/aws-c-auth/include/aws/auth/private/key_derivation.h
aws-crt-0.1.0.pre native/crt/aws-c-auth/include/aws/auth/private/key_derivation.h