LCOV - code coverage report
Current view: top level - src/crypto - hmac_sha256.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 100.0 % 20 20
Test Date: 2024-09-01 05:20:30 Functions: 100.0 % 2 2
Branches: 100.0 % 6 6

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2014-2018 The Bitcoin Core developers
       2                 :             : // Distributed under the MIT software license, see the accompanying
       3                 :             : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
       4                 :             : 
       5                 :             : #include <crypto/hmac_sha256.h>
       6                 :             : 
       7                 :             : #include <string.h>
       8                 :             : 
       9                 :      115747 : CHMAC_SHA256::CHMAC_SHA256(const unsigned char* key, size_t keylen)
      10                 :             : {
      11                 :      115747 :     unsigned char rkey[64];
      12         [ +  + ]:      115747 :     if (keylen <= 64) {
      13                 :      115523 :         memcpy(rkey, key, keylen);
      14                 :      115523 :         memset(rkey + keylen, 0, 64 - keylen);
      15                 :      115523 :     } else {
      16                 :         224 :         CSHA256().Write(key, keylen).Finalize(rkey);
      17                 :         224 :         memset(rkey + 32, 0, 32);
      18                 :             :     }
      19                 :             : 
      20         [ +  + ]:     7523555 :     for (int n = 0; n < 64; n++)
      21                 :     7407808 :         rkey[n] ^= 0x5c;
      22                 :      115747 :     outer.Write(rkey, 64);
      23                 :             : 
      24         [ +  + ]:     7523555 :     for (int n = 0; n < 64; n++)
      25                 :     7407808 :         rkey[n] ^= 0x5c ^ 0x36;
      26                 :      115747 :     inner.Write(rkey, 64);
      27                 :      115747 : }
      28                 :             : 
      29                 :      115551 : void CHMAC_SHA256::Finalize(unsigned char hash[OUTPUT_SIZE])
      30                 :             : {
      31                 :      115551 :     unsigned char temp[32];
      32                 :      115551 :     inner.Finalize(temp);
      33                 :      115551 :     outer.Write(temp, 32).Finalize(hash);
      34                 :      115551 : }
        

Generated by: LCOV version 2.0-1