1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-31 11:19:18 +00:00

Fix cpplint job

This commit is contained in:
Carles Fernandez 2023-06-07 17:31:10 +02:00
parent 972ead3cae
commit 84cc4c79ab
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ public:
private: private:
friend osnma_msg_receiver_sptr osnma_msg_receiver_make(const std::string& pemFilePath); friend osnma_msg_receiver_sptr osnma_msg_receiver_make(const std::string& pemFilePath);
osnma_msg_receiver(const std::string& pemFilePath); explicit osnma_msg_receiver(const std::string& pemFilePath);
void msg_handler_osnma(const pmt::pmt_t& msg); void msg_handler_osnma(const pmt::pmt_t& msg);
void process_osnma_message(const std::shared_ptr<OSNMA_msg>& osnma_msg); void process_osnma_message(const std::shared_ptr<OSNMA_msg>& osnma_msg);

View File

@ -33,7 +33,7 @@ class Gnss_Crypto
{ {
public: public:
Gnss_Crypto() = default; Gnss_Crypto() = default;
Gnss_Crypto(const std::string& filePath); explicit Gnss_Crypto(const std::string& filePath);
std::vector<uint8_t> computeSHA256(const std::vector<uint8_t>& input); std::vector<uint8_t> computeSHA256(const std::vector<uint8_t>& input);
std::vector<uint8_t> computeSHA3_256(const std::vector<uint8_t>& input); std::vector<uint8_t> computeSHA3_256(const std::vector<uint8_t>& input);
std::vector<uint8_t> computeHMAC_SHA_256(const std::vector<uint8_t>& key, const std::vector<uint8_t>& input); std::vector<uint8_t> computeHMAC_SHA_256(const std::vector<uint8_t>& key, const std::vector<uint8_t>& input);