mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-23 00:25:07 +03:00
With the internal headers now in include/libcamera/internal/, we may have identically named headers in include/libcamera/. Their header guards would clash. Rename the header guards of internal headers to prevent any issue. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
38 lines
691 B
C++
38 lines
691 B
C++
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2020, Google Inc.
|
|
*
|
|
* pub_key.h - Public key signature verification
|
|
*/
|
|
#ifndef __LIBCAMERA_INTERNAL_PUB_KEY_H__
|
|
#define __LIBCAMERA_INTERNAL_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_INTERNAL_PUB_KEY_H__ */
|