summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libcrypto/ec/ec_kmeth.c4
-rw-r--r--src/lib/libcrypto/ecdsa/ecdsa_local.h (renamed from src/lib/libcrypto/ecdsa/ecs_local.h)2
-rw-r--r--src/lib/libcrypto/ecdsa/ecs_asn1.c4
-rw-r--r--src/lib/libcrypto/ecdsa/ecs_lib.c4
-rw-r--r--src/lib/libcrypto/ecdsa/ecs_ossl.c4
-rw-r--r--src/lib/libcrypto/gost/gostr341001.c4
-rw-r--r--src/lib/libcrypto/gost/gostr341001_pmeth.c4
7 files changed, 13 insertions, 13 deletions
diff --git a/src/lib/libcrypto/ec/ec_kmeth.c b/src/lib/libcrypto/ec/ec_kmeth.c
index 65bf1f99c2..ec45e679d9 100644
--- a/src/lib/libcrypto/ec/ec_kmeth.c
+++ b/src/lib/libcrypto/ec/ec_kmeth.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_kmeth.c,v 1.9 2023/07/05 08:39:40 tb Exp $ */ 1/* $OpenBSD: ec_kmeth.c,v 1.10 2023/07/05 11:37:46 tb Exp $ */
2/* 2/*
3 * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 3 * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
4 * project. 4 * project.
@@ -60,7 +60,7 @@
60 60
61#include "bn_local.h" 61#include "bn_local.h"
62#include "ec_local.h" 62#include "ec_local.h"
63#include "ecs_local.h" 63#include "ecdsa_local.h"
64 64
65static const EC_KEY_METHOD openssl_ec_key_method = { 65static const EC_KEY_METHOD openssl_ec_key_method = {
66 .name = "OpenSSL EC_KEY method", 66 .name = "OpenSSL EC_KEY method",
diff --git a/src/lib/libcrypto/ecdsa/ecs_local.h b/src/lib/libcrypto/ecdsa/ecdsa_local.h
index 295c4756ae..249e045900 100644
--- a/src/lib/libcrypto/ecdsa/ecs_local.h
+++ b/src/lib/libcrypto/ecdsa/ecdsa_local.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ecs_local.h,v 1.5 2023/07/05 11:28:50 tb Exp $ */ 1/* $OpenBSD: ecdsa_local.h,v 1.1 2023/07/05 11:37:46 tb Exp $ */
2/* 2/*
3 * Written by Nils Larsch for the OpenSSL project 3 * Written by Nils Larsch for the OpenSSL project
4 */ 4 */
diff --git a/src/lib/libcrypto/ecdsa/ecs_asn1.c b/src/lib/libcrypto/ecdsa/ecs_asn1.c
index 916220f97d..9e3506cd51 100644
--- a/src/lib/libcrypto/ecdsa/ecs_asn1.c
+++ b/src/lib/libcrypto/ecdsa/ecs_asn1.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ecs_asn1.c,v 1.14 2023/03/25 09:09:28 tb Exp $ */ 1/* $OpenBSD: ecs_asn1.c,v 1.15 2023/07/05 11:37:46 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -57,7 +57,7 @@
57#include <openssl/bn.h> 57#include <openssl/bn.h>
58#include <openssl/err.h> 58#include <openssl/err.h>
59 59
60#include "ecs_local.h" 60#include "ecdsa_local.h"
61 61
62static const ASN1_TEMPLATE ECDSA_SIG_seq_tt[] = { 62static const ASN1_TEMPLATE ECDSA_SIG_seq_tt[] = {
63 { 63 {
diff --git a/src/lib/libcrypto/ecdsa/ecs_lib.c b/src/lib/libcrypto/ecdsa/ecs_lib.c
index 69aa1b732b..ed02b552c9 100644
--- a/src/lib/libcrypto/ecdsa/ecs_lib.c
+++ b/src/lib/libcrypto/ecdsa/ecs_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ecs_lib.c,v 1.23 2023/07/05 08:39:40 tb Exp $ */ 1/* $OpenBSD: ecs_lib.c,v 1.24 2023/07/05 11:37:46 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -64,7 +64,7 @@
64#include <openssl/bn.h> 64#include <openssl/bn.h>
65 65
66#include "ec_local.h" 66#include "ec_local.h"
67#include "ecs_local.h" 67#include "ecdsa_local.h"
68 68
69static const ECDSA_METHOD *default_ECDSA_method = NULL; 69static const ECDSA_METHOD *default_ECDSA_method = NULL;
70 70
diff --git a/src/lib/libcrypto/ecdsa/ecs_ossl.c b/src/lib/libcrypto/ecdsa/ecs_ossl.c
index 223cc655da..9886852e0f 100644
--- a/src/lib/libcrypto/ecdsa/ecs_ossl.c
+++ b/src/lib/libcrypto/ecdsa/ecs_ossl.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ecs_ossl.c,v 1.72 2023/07/05 08:39:40 tb Exp $ */ 1/* $OpenBSD: ecs_ossl.c,v 1.73 2023/07/05 11:37:46 tb Exp $ */
2/* 2/*
3 * Written by Nils Larsch for the OpenSSL project 3 * Written by Nils Larsch for the OpenSSL project
4 */ 4 */
@@ -67,7 +67,7 @@
67 67
68#include "bn_local.h" 68#include "bn_local.h"
69#include "ec_local.h" 69#include "ec_local.h"
70#include "ecs_local.h" 70#include "ecdsa_local.h"
71 71
72/* 72/*
73 * FIPS 186-5, section 6.4.1, step 2: convert hashed message into an integer. 73 * FIPS 186-5, section 6.4.1, step 2: convert hashed message into an integer.
diff --git a/src/lib/libcrypto/gost/gostr341001.c b/src/lib/libcrypto/gost/gostr341001.c
index 79fddb11b0..1c34626a43 100644
--- a/src/lib/libcrypto/gost/gostr341001.c
+++ b/src/lib/libcrypto/gost/gostr341001.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: gostr341001.c,v 1.11 2022/12/01 02:58:31 jsing Exp $ */ 1/* $OpenBSD: gostr341001.c,v 1.12 2023/07/05 11:37:45 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> 3 * Copyright (c) 2014 Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
4 * Copyright (c) 2005-2006 Cryptocom LTD 4 * Copyright (c) 2005-2006 Cryptocom LTD
@@ -59,7 +59,7 @@
59#include <openssl/gost.h> 59#include <openssl/gost.h>
60 60
61#include "bn_local.h" 61#include "bn_local.h"
62#include "ecs_local.h" 62#include "ecdsa_local.h"
63#include "gost_local.h" 63#include "gost_local.h"
64 64
65/* Convert little-endian byte array into bignum */ 65/* Convert little-endian byte array into bignum */
diff --git a/src/lib/libcrypto/gost/gostr341001_pmeth.c b/src/lib/libcrypto/gost/gostr341001_pmeth.c
index 38f94ecd81..93e4820d7c 100644
--- a/src/lib/libcrypto/gost/gostr341001_pmeth.c
+++ b/src/lib/libcrypto/gost/gostr341001_pmeth.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: gostr341001_pmeth.c,v 1.17 2022/11/26 16:08:53 tb Exp $ */ 1/* $OpenBSD: gostr341001_pmeth.c,v 1.18 2023/07/05 11:37:45 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> 3 * Copyright (c) 2014 Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
4 * Copyright (c) 2005-2006 Cryptocom LTD 4 * Copyright (c) 2005-2006 Cryptocom LTD
@@ -62,7 +62,7 @@
62#include <openssl/ecdsa.h> 62#include <openssl/ecdsa.h>
63#include <openssl/x509.h> 63#include <openssl/x509.h>
64 64
65#include "ecs_local.h" 65#include "ecdsa_local.h"
66#include "evp_local.h" 66#include "evp_local.h"
67#include "gost_local.h" 67#include "gost_local.h"
68#include "gost_asn1.h" 68#include "gost_asn1.h"