summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/bio_ndef.c
diff options
context:
space:
mode:
authortb <>2023-04-25 19:08:30 +0000
committertb <>2023-04-25 19:08:30 +0000
commitca5efeb5b1e8d7d758ac5f1f193f58355db6ba99 (patch)
tree2fe58f7a7b2748b48eeafe260a4331a19642f102 /src/lib/libcrypto/asn1/bio_ndef.c
parentf951e27e3b933e528893e6471d7d30f5da19eaa5 (diff)
downloadopenbsd-ca5efeb5b1e8d7d758ac5f1f193f58355db6ba99.tar.gz
openbsd-ca5efeb5b1e8d7d758ac5f1f193f58355db6ba99.tar.bz2
openbsd-ca5efeb5b1e8d7d758ac5f1f193f58355db6ba99.zip
Move low level BIO_new_NDEF API to internal-only
Diffstat (limited to 'src/lib/libcrypto/asn1/bio_ndef.c')
-rw-r--r--src/lib/libcrypto/asn1/bio_ndef.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/libcrypto/asn1/bio_ndef.c b/src/lib/libcrypto/asn1/bio_ndef.c
index 2aa323a898..d0329ede8f 100644
--- a/src/lib/libcrypto/asn1/bio_ndef.c
+++ b/src/lib/libcrypto/asn1/bio_ndef.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bio_ndef.c,v 1.21 2023/03/30 14:23:50 tb Exp $ */ 1/* $OpenBSD: bio_ndef.c,v 1.22 2023/04/25 19:08:30 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project. 3 * project.
4 */ 4 */
@@ -52,12 +52,14 @@
52 * 52 *
53 */ 53 */
54 54
55#include <stdio.h>
56
55#include <openssl/asn1.h> 57#include <openssl/asn1.h>
56#include <openssl/asn1t.h> 58#include <openssl/asn1t.h>
57#include <openssl/bio.h> 59#include <openssl/bio.h>
58#include <openssl/err.h> 60#include <openssl/err.h>
59 61
60#include <stdio.h> 62#include "asn1_local.h"
61 63
62/* Experimental NDEF ASN1 BIO support routines */ 64/* Experimental NDEF ASN1 BIO support routines */
63 65