diff options
Diffstat (limited to 'src/lib/libcrypto/ecdsa')
-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.c | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/ecdsa/ecs_lib.c | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/ecdsa/ecs_ossl.c | 4 |
4 files changed, 7 insertions, 7 deletions
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 | ||
62 | static const ASN1_TEMPLATE ECDSA_SIG_seq_tt[] = { | 62 | static 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 | ||
69 | static const ECDSA_METHOD *default_ECDSA_method = NULL; | 69 | static 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. |