aboutsummaryrefslogtreecommitdiff
path: root/src/pki/fillins/openssl_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pki/fillins/openssl_util.h')
-rw-r--r--src/pki/fillins/openssl_util.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/pki/fillins/openssl_util.h b/src/pki/fillins/openssl_util.h
deleted file mode 100644
index f193a51..0000000
--- a/src/pki/fillins/openssl_util.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2023 The Chromium Authors
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef BSSL_FILLINS_OPENSSL_UTIL_H
-#define BSSL_FILLINS_OPENSSL_UTIL_H
-
-#include <openssl/base.h>
-
-#include <string>
-
-namespace bssl {
-
-namespace fillins {
-
-// Place an instance of this class on the call stack to automatically clear
-// the OpenSSL error stack on function exit.
-class OPENSSL_EXPORT OpenSSLErrStackTracer {
- public:
- OpenSSLErrStackTracer();
- ~OpenSSLErrStackTracer();
-};
-
-} // namespace fillins
-
-} // namespace bssl
-
-#endif // BSSL_FILLINS_OPENSSL_UTIL_H