summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libcrypto/evp/evp_encode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/evp/evp_encode.c b/src/lib/libcrypto/evp/evp_encode.c
index 9387328f5e..199bdfa27e 100644
--- a/src/lib/libcrypto/evp/evp_encode.c
+++ b/src/lib/libcrypto/evp/evp_encode.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: evp_encode.c,v 1.1 2023/12/29 05:57:24 tb Exp $ */ 1/* $OpenBSD: evp_encode.c,v 1.2 2023/12/29 10:31:50 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -92,7 +92,7 @@ abcdefghijklmnopqrstuvwxyz0123456789+/";
92#define B64_CR 0xF1 92#define B64_CR 0xF1
93#define B64_EOF 0xF2 93#define B64_EOF 0xF2
94#define B64_WS 0xE0 94#define B64_WS 0xE0
95#define B64_ERROR 0xFF 95#define B64_ERROR 0xFF
96#define B64_NOT_BASE64(a) (((a)|0x13) == 0xF3) 96#define B64_NOT_BASE64(a) (((a)|0x13) == 0xF3)
97#define B64_BASE64(a) !B64_NOT_BASE64(a) 97#define B64_BASE64(a) !B64_NOT_BASE64(a)
98 98