summaryrefslogtreecommitdiff
path: root/src/libcamera/include/pub_key.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcamera/include/pub_key.h')
-rw-r--r--src/libcamera/include/pub_key.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/libcamera/include/pub_key.h b/src/libcamera/include/pub_key.h
deleted file mode 100644
index f35bf373..00000000
--- a/src/libcamera/include/pub_key.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/* SPDX-License-Identifier: LGPL-2.1-or-later */
-/*
- * Copyright (C) 2020, Google Inc.
- *
- * pub_key.h - Public key signature verification
- */
-#ifndef __LIBCAMERA_PUB_KEY_H__
-#define __LIBCAMERA_PUB_KEY_H__
-
-#include <stdint.h>
-
-#include <libcamera/span.h>
-
-#if HAVE_GNUTLS
-struct gnutls_pubkey_st;
-#endif
-
-namespace libcamera {
-
-class PubKey
-{
-public:
- PubKey(Span<const uint8_t> key);
- ~PubKey();
-
- bool isValid() const { return valid_; }
- bool verify(Span<const uint8_t> data, Span<const uint8_t> sig) const;
-
-private:
- bool valid_;
-#if HAVE_GNUTLS
- struct gnutls_pubkey_st *pubkey_;
-#endif
-};
-
-} /* namespace libcamera */
-
-#endif /* __LIBCAMERA_PUB_KEY_H__ */