aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/aws/s2n/tls/s2n_crypto_constants.h
diff options
context:
space:
mode:
authororivej <orivej@yandex-team.ru>2022-02-10 16:44:49 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:44:49 +0300
commit718c552901d703c502ccbefdfc3c9028d608b947 (patch)
tree46534a98bbefcd7b1f3faa5b52c138ab27db75b7 /contrib/restricted/aws/s2n/tls/s2n_crypto_constants.h
parente9656aae26e0358d5378e5b63dcac5c8dbe0e4d0 (diff)
downloadydb-718c552901d703c502ccbefdfc3c9028d608b947.tar.gz
Restoring authorship annotation for <orivej@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/restricted/aws/s2n/tls/s2n_crypto_constants.h')
-rw-r--r--contrib/restricted/aws/s2n/tls/s2n_crypto_constants.h100
1 files changed, 50 insertions, 50 deletions
diff --git a/contrib/restricted/aws/s2n/tls/s2n_crypto_constants.h b/contrib/restricted/aws/s2n/tls/s2n_crypto_constants.h
index 52316e256e..9b3753ec92 100644
--- a/contrib/restricted/aws/s2n/tls/s2n_crypto_constants.h
+++ b/contrib/restricted/aws/s2n/tls/s2n_crypto_constants.h
@@ -1,50 +1,50 @@
-/*
- * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License").
- * You may not use this file except in compliance with the License.
- * A copy of the License is located at
- *
- * http://aws.amazon.com/apache2.0
- *
- * or in the "license" file accompanying this file. This file is distributed
- * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
- * express or implied. See the License for the specific language governing
- * permissions and limitations under the License.
- */
-
-#pragma once
-
-#define S2N_TLS_SECRET_LEN 48
-#define S2N_TLS_RANDOM_DATA_LEN 32
-#define S2N_TLS_SEQUENCE_NUM_LEN 8
-#define S2N_TLS_CIPHER_SUITE_LEN 2
-#define S2N_SSLv2_CIPHER_SUITE_LEN 3
-#define S2N_TLS_FINISHED_LEN 12
-#define S2N_SSL_FINISHED_LEN 36
-#define S2N_TLS_MAX_IV_LEN 16
-
-/* From RFC 5246 6.2.3.3 */
-#define S2N_TLS12_AAD_LEN 13
-#define S2N_TLS_MAX_AAD_LEN S2N_TLS12_AAD_LEN
-#define S2N_TLS_GCM_FIXED_IV_LEN 4
-#define S2N_TLS_GCM_EXPLICIT_IV_LEN 8
-#define S2N_TLS_GCM_IV_LEN (S2N_TLS_GCM_FIXED_IV_LEN + S2N_TLS_GCM_EXPLICIT_IV_LEN)
-#define S2N_TLS_GCM_TAG_LEN 16
-#define S2N_TLS_AES_128_GCM_KEY_LEN 16
-#define S2N_TLS_AES_256_GCM_KEY_LEN 32
-
-/* TLS 1.3 uses only implicit IVs - RFC 8446 5.3 */
-#define S2N_TLS13_AAD_LEN 5
-#define S2N_TLS13_RECORD_IV_LEN 0
-#define S2N_TLS13_FIXED_IV_LEN 12
-
-/* From RFC 7905 */
-#define S2N_TLS_CHACHA20_POLY1305_FIXED_IV_LEN 12
-#define S2N_TLS_CHACHA20_POLY1305_EXPLICIT_IV_LEN 0
-#define S2N_TLS_CHACHA20_POLY1305_IV_LEN 12
-#define S2N_TLS_CHACHA20_POLY1305_KEY_LEN 32
-#define S2N_TLS_CHACHA20_POLY1305_TAG_LEN 16
-
-/* RFC 5246 7.4.1.2 */
-#define S2N_TLS_SESSION_ID_MAX_LEN 32
+/*
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License").
+ * You may not use this file except in compliance with the License.
+ * A copy of the License is located at
+ *
+ * http://aws.amazon.com/apache2.0
+ *
+ * or in the "license" file accompanying this file. This file is distributed
+ * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
+ * express or implied. See the License for the specific language governing
+ * permissions and limitations under the License.
+ */
+
+#pragma once
+
+#define S2N_TLS_SECRET_LEN 48
+#define S2N_TLS_RANDOM_DATA_LEN 32
+#define S2N_TLS_SEQUENCE_NUM_LEN 8
+#define S2N_TLS_CIPHER_SUITE_LEN 2
+#define S2N_SSLv2_CIPHER_SUITE_LEN 3
+#define S2N_TLS_FINISHED_LEN 12
+#define S2N_SSL_FINISHED_LEN 36
+#define S2N_TLS_MAX_IV_LEN 16
+
+/* From RFC 5246 6.2.3.3 */
+#define S2N_TLS12_AAD_LEN 13
+#define S2N_TLS_MAX_AAD_LEN S2N_TLS12_AAD_LEN
+#define S2N_TLS_GCM_FIXED_IV_LEN 4
+#define S2N_TLS_GCM_EXPLICIT_IV_LEN 8
+#define S2N_TLS_GCM_IV_LEN (S2N_TLS_GCM_FIXED_IV_LEN + S2N_TLS_GCM_EXPLICIT_IV_LEN)
+#define S2N_TLS_GCM_TAG_LEN 16
+#define S2N_TLS_AES_128_GCM_KEY_LEN 16
+#define S2N_TLS_AES_256_GCM_KEY_LEN 32
+
+/* TLS 1.3 uses only implicit IVs - RFC 8446 5.3 */
+#define S2N_TLS13_AAD_LEN 5
+#define S2N_TLS13_RECORD_IV_LEN 0
+#define S2N_TLS13_FIXED_IV_LEN 12
+
+/* From RFC 7905 */
+#define S2N_TLS_CHACHA20_POLY1305_FIXED_IV_LEN 12
+#define S2N_TLS_CHACHA20_POLY1305_EXPLICIT_IV_LEN 0
+#define S2N_TLS_CHACHA20_POLY1305_IV_LEN 12
+#define S2N_TLS_CHACHA20_POLY1305_KEY_LEN 32
+#define S2N_TLS_CHACHA20_POLY1305_TAG_LEN 16
+
+/* RFC 5246 7.4.1.2 */
+#define S2N_TLS_SESSION_ID_MAX_LEN 32