summaryrefslogtreecommitdiffstats
path: root/crypto/include
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-08-03 21:01:35 +0200
committerRichard Levitte <levitte@openssl.org>2020-08-07 04:13:28 +0200
commit413835f5d158acb14147e9f1c4f85b9c518b1fa6 (patch)
tree49972ad478175afdc81cee15cc093777ef17aa88 /crypto/include
parent6ce6ad39fe85cf8b5c84ded9885329bf703ee649 (diff)
PEM: Make general MSBLOB reader functions exposed internally
Fly-by fix is to move crypto/include/internal/pem_int.h to include/internal/pem.h. Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12574)
Diffstat (limited to 'crypto/include')
-rw-r--r--crypto/include/internal/pem_int.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/crypto/include/internal/pem_int.h b/crypto/include/internal/pem_int.h
deleted file mode 100644
index c8f90528c3..0000000000
--- a/crypto/include/internal/pem_int.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright 2018-2020 The OpenSSL Project Authors. All Rights Reserved.
- *
- * Licensed under the OpenSSL license (the "License"). You may not use
- * this file except in compliance with the License. You can obtain a copy
- * in the file LICENSE in the source distribution or at
- * https://www.openssl.org/source/license.html
- */
-
-#ifndef HEADER_PEM_INT_H
-# define HEADER_PEM_INT_H
-
-# include <openssl/pem.h>
-
-/* Found in crypto/pem/pvkfmt.c */
-int ossl_do_blob_header(const unsigned char **in, unsigned int length,
- unsigned int *pmagic, unsigned int *pbitlen,
- int *pisdss, int *pispub);
-int ossl_do_PVK_header(const unsigned char **in, unsigned int length,
- int skip_magic,
- unsigned int *psaltlen, unsigned int *pkeylen);
-
-#endif