aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/aws/s2n/pq-crypto/bike_r1/aes_wrap.h
diff options
context:
space:
mode:
authororivej <orivej@yandex-team.ru>2022-02-10 16:45:01 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:01 +0300
commit2d37894b1b037cf24231090eda8589bbb44fb6fc (patch)
treebe835aa92c6248212e705f25388ebafcf84bc7a1 /contrib/restricted/aws/s2n/pq-crypto/bike_r1/aes_wrap.h
parent718c552901d703c502ccbefdfc3c9028d608b947 (diff)
downloadydb-2d37894b1b037cf24231090eda8589bbb44fb6fc.tar.gz
Restoring authorship annotation for <orivej@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/restricted/aws/s2n/pq-crypto/bike_r1/aes_wrap.h')
-rw-r--r--contrib/restricted/aws/s2n/pq-crypto/bike_r1/aes_wrap.h140
1 files changed, 70 insertions, 70 deletions
diff --git a/contrib/restricted/aws/s2n/pq-crypto/bike_r1/aes_wrap.h b/contrib/restricted/aws/s2n/pq-crypto/bike_r1/aes_wrap.h
index 4d34a1c229..26f439ac5e 100644
--- a/contrib/restricted/aws/s2n/pq-crypto/bike_r1/aes_wrap.h
+++ b/contrib/restricted/aws/s2n/pq-crypto/bike_r1/aes_wrap.h
@@ -1,70 +1,70 @@
-/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
- * SPDX-License-Identifier: Apache-2.0"
- *
- * Written by Nir Drucker, Shay Gueron, and Dusan Kostic,
- * AWS Cryptographic Algorithms Group.
- * (ndrucker@amazon.com, gueron@amazon.com, dkostic@amazon.com)
- */
-
-#pragma once
-
-#include "cleanup.h"
-#include <openssl/evp.h>
-
-#define MAX_AES_INVOKATION (MASK(32))
-
-#define AES256_KEY_SIZE (32U)
-#define AES256_KEY_BITS (AES256_KEY_SIZE * 8)
-#define AES256_BLOCK_SIZE (16U)
-#define AES256_ROUNDS (14U)
-
-typedef ALIGN(16) struct aes256_key_s
-{
- uint8_t raw[AES256_KEY_SIZE];
-} aes256_key_t;
-
-_INLINE_ void
-aes256_key_cleanup(aes256_key_t *o)
-{
- secure_clean(o->raw, sizeof(*o));
-}
-
-// Using OpenSSL structures
-typedef EVP_CIPHER_CTX *aes256_ks_t;
-
-_INLINE_ ret_t
-aes256_key_expansion(OUT aes256_ks_t *ks, IN const aes256_key_t *key)
-{
- *ks = EVP_CIPHER_CTX_new();
- if(*ks == NULL)
- {
- BIKE_ERROR(EXTERNAL_LIB_ERROR_OPENSSL);
- }
- if(0 == EVP_EncryptInit_ex(*ks, EVP_aes_256_ecb(), NULL, key->raw, NULL))
- {
- EVP_CIPHER_CTX_free(*ks);
- BIKE_ERROR(EXTERNAL_LIB_ERROR_OPENSSL);
- }
-
- EVP_CIPHER_CTX_set_padding(*ks, 0);
-
- return SUCCESS;
-}
-
-_INLINE_ ret_t
-aes256_enc(OUT uint8_t *ct, IN const uint8_t *pt, IN const aes256_ks_t *ks)
-{
- int outlen = 0;
- if(0 == EVP_EncryptUpdate(*ks, ct, &outlen, pt, AES256_BLOCK_SIZE))
- {
- BIKE_ERROR(EXTERNAL_LIB_ERROR_OPENSSL);
- }
- return SUCCESS;
-}
-
-_INLINE_ void
-aes256_free_ks(OUT aes256_ks_t *ks)
-{
- EVP_CIPHER_CTX_free(*ks);
- *ks = NULL;
-}
+/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ * SPDX-License-Identifier: Apache-2.0"
+ *
+ * Written by Nir Drucker, Shay Gueron, and Dusan Kostic,
+ * AWS Cryptographic Algorithms Group.
+ * (ndrucker@amazon.com, gueron@amazon.com, dkostic@amazon.com)
+ */
+
+#pragma once
+
+#include "cleanup.h"
+#include <openssl/evp.h>
+
+#define MAX_AES_INVOKATION (MASK(32))
+
+#define AES256_KEY_SIZE (32U)
+#define AES256_KEY_BITS (AES256_KEY_SIZE * 8)
+#define AES256_BLOCK_SIZE (16U)
+#define AES256_ROUNDS (14U)
+
+typedef ALIGN(16) struct aes256_key_s
+{
+ uint8_t raw[AES256_KEY_SIZE];
+} aes256_key_t;
+
+_INLINE_ void
+aes256_key_cleanup(aes256_key_t *o)
+{
+ secure_clean(o->raw, sizeof(*o));
+}
+
+// Using OpenSSL structures
+typedef EVP_CIPHER_CTX *aes256_ks_t;
+
+_INLINE_ ret_t
+aes256_key_expansion(OUT aes256_ks_t *ks, IN const aes256_key_t *key)
+{
+ *ks = EVP_CIPHER_CTX_new();
+ if(*ks == NULL)
+ {
+ BIKE_ERROR(EXTERNAL_LIB_ERROR_OPENSSL);
+ }
+ if(0 == EVP_EncryptInit_ex(*ks, EVP_aes_256_ecb(), NULL, key->raw, NULL))
+ {
+ EVP_CIPHER_CTX_free(*ks);
+ BIKE_ERROR(EXTERNAL_LIB_ERROR_OPENSSL);
+ }
+
+ EVP_CIPHER_CTX_set_padding(*ks, 0);
+
+ return SUCCESS;
+}
+
+_INLINE_ ret_t
+aes256_enc(OUT uint8_t *ct, IN const uint8_t *pt, IN const aes256_ks_t *ks)
+{
+ int outlen = 0;
+ if(0 == EVP_EncryptUpdate(*ks, ct, &outlen, pt, AES256_BLOCK_SIZE))
+ {
+ BIKE_ERROR(EXTERNAL_LIB_ERROR_OPENSSL);
+ }
+ return SUCCESS;
+}
+
+_INLINE_ void
+aes256_free_ks(OUT aes256_ks_t *ks)
+{
+ EVP_CIPHER_CTX_free(*ks);
+ *ks = NULL;
+}