summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bn
diff options
context:
space:
mode:
authortb <>2024-03-02 09:18:28 +0000
committertb <>2024-03-02 09:18:28 +0000
commit624e55f48614f7c5aaa62d91eee54f0862c62db0 (patch)
treea10ae269ac1b72561a9a6dc886dfb556d16c89ba /src/lib/libcrypto/bn
parent19ff5a07b9eda695a529279cb69d7708907ffac2 (diff)
downloadopenbsd-624e55f48614f7c5aaa62d91eee54f0862c62db0.tar.gz
openbsd-624e55f48614f7c5aaa62d91eee54f0862c62db0.tar.bz2
openbsd-624e55f48614f7c5aaa62d91eee54f0862c62db0.zip
Remove BIO_{sn,v,vsn}printf(3)
Unsued printing functionality. If something should need this we can readily add it back. ok jsing
Diffstat (limited to 'src/lib/libcrypto/bn')
-rw-r--r--src/lib/libcrypto/bn/bn_print.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bn/bn_print.c b/src/lib/libcrypto/bn/bn_print.c
index e7678f7a99..cd8b663602 100644
--- a/src/lib/libcrypto/bn/bn_print.c
+++ b/src/lib/libcrypto/bn/bn_print.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_print.c,v 1.46 2023/07/22 17:14:08 tb Exp $ */ 1/* $OpenBSD: bn_print.c,v 1.47 2024/03/02 09:18:28 tb Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2023 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2023 Theo Buehler <tb@openbsd.org>
@@ -25,6 +25,7 @@
25#include <openssl/bio.h> 25#include <openssl/bio.h>
26#include <openssl/bn.h> 26#include <openssl/bn.h>
27 27
28#include "bio_local.h"
28#include "bn_local.h" 29#include "bn_local.h"
29#include "bytestring.h" 30#include "bytestring.h"
30 31