summaryrefslogtreecommitdiff
path: root/test/serialization
diff options
context:
space:
mode:
authorHirokazu Honda <hiroh@chromium.org>2021-05-13 13:53:23 +0900
committerPaul Elder <paul.elder@ideasonboard.com>2021-05-13 17:24:02 +0900
commit0445a2dc02e8d686566553c50e89a7e873a964aa (patch)
tree1432b589f9d716da9aaa9e92ae0554d4ec5a99e3 /test/serialization
parent0906ddb2681a53aff9ecccb7e933e9f04974022f (diff)
Documentation: Fix too short title underline in ipa.rst
Sphinx build is broken from the commit (0906ddb2) because a title underline is too short. This fixed the breakage. Fixes: 0906ddb2681a ("Documentation: Add IPA writers guide") Signed-off-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Signed-off-by: Paul Elder <paul.elder@ideasonboard.com>
Diffstat (limited to 'test/serialization')
0 files changed, 0 insertions, 0 deletions
-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__ */