summaryrefslogtreecommitdiff
path: root/lib/libcrypto/bn
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2023-04-19 11:14:05 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2023-04-19 11:14:05 +0000
commit24164e76e37282b47c5b01dc364a977ee9389b21 (patch)
tree93629c102c321108e756f43570686ff1f25e9fbf /lib/libcrypto/bn
parent55dd18a5286438fabcaede3d864e52a555226892 (diff)
Rename Hex array to hex_digits.
ok tb@
Diffstat (limited to 'lib/libcrypto/bn')
-rw-r--r--lib/libcrypto/bn/bn_convert.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libcrypto/bn/bn_convert.c b/lib/libcrypto/bn/bn_convert.c
index 5df79fded6b..bfb5a566a66 100644
--- a/lib/libcrypto/bn/bn_convert.c
+++ b/lib/libcrypto/bn/bn_convert.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bn_convert.c,v 1.5 2023/04/19 11:12:43 jsing Exp $ */
+/* $OpenBSD: bn_convert.c,v 1.6 2023/04/19 11:14:04 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -69,7 +69,7 @@
#include "bn_local.h"
-static const char Hex[]="0123456789ABCDEF";
+static const char hex_digits[] = "0123456789ABCDEF";
typedef enum {
big,
@@ -443,8 +443,8 @@ BN_bn2hex(const BIGNUM *a)
/* strip leading zeros */
v = ((int)(a->d[i] >> (long)j)) & 0xff;
if (z || (v != 0)) {
- *p++ = Hex[v >> 4];
- *p++ = Hex[v & 0x0f];
+ *p++ = hex_digits[v >> 4];
+ *p++ = hex_digits[v & 0x0f];
z = 1;
}
}
@@ -634,7 +634,7 @@ BN_print(BIO *bp, const BIGNUM *a)
/* strip leading zeros */
v = ((int)(a->d[i] >> (long)j)) & 0x0f;
if (z || (v != 0)) {
- if (BIO_write(bp, &(Hex[v]), 1) != 1)
+ if (BIO_write(bp, &hex_digits[v], 1) != 1)
goto end;
z = 1;
}