LCOV - code coverage report
Current view: top level - src/crypto - hmac_sha512.cpp (source / functions) Hit Total Coverage
Test: fuzz_coverage.info Lines: 16 18 88.9 %
Date: 2023-11-10 23:46:46 Functions: 2 2 100.0 %
Branches: 5 6 83.3 %

           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                 :      18951 : CHMAC_SHA512::CHMAC_SHA512(const unsigned char* key, size_t keylen)
      10                 :            : {
      11                 :            :     unsigned char rkey[128];
      12         [ +  - ]:      18951 :     if (keylen <= 128) {
      13                 :      18951 :         memcpy(rkey, key, keylen);
      14                 :      18951 :         memset(rkey + keylen, 0, 128 - keylen);
      15                 :      18951 :     } else {
      16                 :          0 :         CSHA512().Write(key, keylen).Finalize(rkey);
      17                 :          0 :         memset(rkey + 64, 0, 64);
      18                 :            :     }
      19                 :            : 
      20         [ +  + ]:    2444679 :     for (int n = 0; n < 128; n++)
      21                 :    2425728 :         rkey[n] ^= 0x5c;
      22                 :      18951 :     outer.Write(rkey, 128);
      23                 :            : 
      24         [ +  + ]:    2444679 :     for (int n = 0; n < 128; n++)
      25                 :    2425728 :         rkey[n] ^= 0x5c ^ 0x36;
      26                 :      18951 :     inner.Write(rkey, 128);
      27                 :      18951 : }
      28                 :            : 
      29                 :      18951 : void CHMAC_SHA512::Finalize(unsigned char hash[OUTPUT_SIZE])
      30                 :            : {
      31                 :            :     unsigned char temp[64];
      32                 :      18951 :     inner.Finalize(temp);
      33                 :      18951 :     outer.Write(temp, 64).Finalize(hash);
      34                 :      18951 : }

Generated by: LCOV version 1.14