LCOV - code coverage report
Current view: top level - src/crypto - hmac_sha512.cpp (source / functions) Coverage Total Hit
Test: test_bitcoin_coverage.info Lines: 100.0 % 19 19
Test Date: 2024-08-28 04:44:32 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_sha512.h>
       6                 :             : 
       7                 :             : #include <string.h>
       8                 :             : 
       9                 :      320025 : CHMAC_SHA512::CHMAC_SHA512(const unsigned char* key, size_t keylen)
      10                 :             : {
      11                 :      320025 :     unsigned char rkey[128];
      12         [ +  + ]:      320025 :     if (keylen <= 128) {
      13                 :      320022 :         memcpy(rkey, key, keylen);
      14                 :      320022 :         memset(rkey + keylen, 0, 128 - keylen);
      15                 :             :     } else {
      16                 :           3 :         CSHA512().Write(key, keylen).Finalize(rkey);
      17                 :           3 :         memset(rkey + 64, 0, 64);
      18                 :             :     }
      19                 :             : 
      20         [ +  + ]:    41283225 :     for (int n = 0; n < 128; n++)
      21                 :    40963200 :         rkey[n] ^= 0x5c;
      22                 :      320025 :     outer.Write(rkey, 128);
      23                 :             : 
      24         [ +  + ]:    41283225 :     for (int n = 0; n < 128; n++)
      25                 :    40963200 :         rkey[n] ^= 0x5c ^ 0x36;
      26                 :      320025 :     inner.Write(rkey, 128);
      27                 :      320025 : }
      28                 :             : 
      29                 :      323550 : void CHMAC_SHA512::Finalize(unsigned char hash[OUTPUT_SIZE])
      30                 :             : {
      31                 :      323550 :     unsigned char temp[64];
      32                 :      323550 :     inner.Finalize(temp);
      33                 :      323550 :     outer.Write(temp, 64).Finalize(hash);
      34                 :      323550 : }
        

Generated by: LCOV version 2.0-1