Coverage Report

Created: 2022-08-24 06:37

/src/cryptofuzz-openssl-api/include/cryptofuzz/repository.h
Line
Count
Source (jump to first uncovered line)
1
#pragma once
2
3
#include <fuzzing/datasource/id.hpp>
4
#include <string>
5
#include <stdexcept>
6
7
namespace cryptofuzz {
8
namespace repository {
9
10
bool IsCBC(const uint64_t id);
11
bool IsCCM(const uint64_t id);
12
bool IsCFB(const uint64_t id);
13
bool IsCTR(const uint64_t id);
14
bool IsECB(const uint64_t id);
15
bool IsGCM(const uint64_t id);
16
bool IsOCB(const uint64_t id);
17
bool IsOFB(const uint64_t id);
18
bool IsXTS(const uint64_t id);
19
bool IsAEAD(const uint64_t id);
20
bool IsWRAP(const uint64_t id);
21
bool IsAES(const uint64_t id);
22
std::string DigestToString(const uint64_t id);
23
std::optional<uint64_t> DigestFromString(const std::string& s);
24
std::string CipherToString(const uint64_t id);
25
std::string ECC_CurveToString(const uint64_t id);
26
std::optional<uint64_t> ECC_CurveFromString(const std::string& s);
27
std::optional<size_t> ECC_CurveToBits(const uint64_t id);
28
std::optional<std::string> ECC_CurveToPrime(const uint64_t id);
29
std::optional<std::string> ECC_CurveToA(const uint64_t id);
30
std::optional<std::string> ECC_CurveToB(const uint64_t id);
31
std::optional<std::string> ECC_CurveToX(const uint64_t id);
32
std::optional<std::string> ECC_CurveToY(const uint64_t id);
33
std::optional<std::string> ECC_CurveToOrderMin1(const uint64_t id);
34
std::optional<std::string> ECC_CurveToOrder(const uint64_t id);
35
std::string CalcOpToString(const uint64_t id);
36
size_t CalcOpToNumParams(const uint64_t id);
37
std::optional<size_t> DigestSize(const uint64_t id);
38
39
#include "../../repository_tbl.h"
40
41
template <typename LUT>
42
inline constexpr long LUTCheck(const uint64_t id, const LUT* lut, const size_t lutSize) noexcept {
43
    for (size_t i = 0; i < lutSize; i++) {
44
        if ( lut[i].id == id ) {
45
            return i;
46
        }
47
    }
48
49
    return -1;
50
}
51
52
template <uint64_t id>
53
constexpr long moduleIndex(void) {
54
    constexpr long index = LUTCheck(id, ModuleLUT, sizeof(ModuleLUT) / sizeof(ModuleLUT[0]));
55
    static_assert(-1 != index, "Not a valid module");
56
    return index;
57
}
58
59
template <uint64_t id>
60
constexpr uint64_t Module(void) {
61
    (void)moduleIndex<id>();
62
    return id;
63
}
64
65
template <uint64_t id>
66
constexpr long operationIndex(void) {
67
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
    static_assert(-1 != index, "Not a valid operation");
69
    return index;
70
}
71
72
template <uint64_t id>
73
constexpr uint64_t Operation(void) {
74
    (void)operationIndex<id>();
75
    return id;
76
}
77
78
template <uint64_t id>
79
5
constexpr long digestIndex(void) {
80
5
    constexpr long index = LUTCheck(id, DigestLUT, sizeof(DigestLUT) / sizeof(DigestLUT[0]));
81
5
    static_assert(-1 != index, "Not a valid digest");
82
5
    return index;
83
5
}
long cryptofuzz::repository::digestIndex<4722774890330090734ul>()
Line
Count
Source
79
1
constexpr long digestIndex(void) {
80
1
    constexpr long index = LUTCheck(id, DigestLUT, sizeof(DigestLUT) / sizeof(DigestLUT[0]));
81
1
    static_assert(-1 != index, "Not a valid digest");
82
1
    return index;
83
1
}
long cryptofuzz::repository::digestIndex<3721760751299392347ul>()
Line
Count
Source
79
1
constexpr long digestIndex(void) {
80
1
    constexpr long index = LUTCheck(id, DigestLUT, sizeof(DigestLUT) / sizeof(DigestLUT[0]));
81
1
    static_assert(-1 != index, "Not a valid digest");
82
1
    return index;
83
1
}
long cryptofuzz::repository::digestIndex<10117993943663300826ul>()
Line
Count
Source
79
1
constexpr long digestIndex(void) {
80
1
    constexpr long index = LUTCheck(id, DigestLUT, sizeof(DigestLUT) / sizeof(DigestLUT[0]));
81
1
    static_assert(-1 != index, "Not a valid digest");
82
1
    return index;
83
1
}
long cryptofuzz::repository::digestIndex<10117995043174929037ul>()
Line
Count
Source
79
1
constexpr long digestIndex(void) {
80
1
    constexpr long index = LUTCheck(id, DigestLUT, sizeof(DigestLUT) / sizeof(DigestLUT[0]));
81
1
    static_assert(-1 != index, "Not a valid digest");
82
1
    return index;
83
1
}
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<14331211725752570280ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<10005503820668675355ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<14356609771627578971ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<9382889272173326955ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<3504204876962697477ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<3450355166456167260ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<3450358464991051893ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<8989551212334913101ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<9326441367258825100ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<16452550327545558230ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<13576222566899769656ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<5539743395198706529ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<15952101299761277882ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<12332401161757138384ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<14229822751382312176ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<8163694440785824261ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<13361868971281677690ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<18302666542519829747ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<4475220330049108872ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<8361011715369233209ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<2075488948259244450ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<8473266746052007431ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<8872906712023707375ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<5046600913796342794ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<5560960351281728901ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<15307561034024662125ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<2953094577370070712ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<10512925313610633373ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<12367986147865658621ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<6129199940879300273ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<8955882836668873941ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<6854737006333781894ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<5866728786590536975ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<16012901404492830732ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<13937406665088527893ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<3927672189283779123ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<3927674388307035545ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<2769893415746427291ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<2769895614769683713ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<7881979837569190506ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<4869767883566109890ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<4869765684542853468ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<12633938770290406723ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<12633940969313663145ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<11397056358600961605ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<11397054159577705183ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<13661847222560907774ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<12365045563994873029ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<13026559038354618177ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<9899993270756223732ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<12712141260368232507ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<7272519953370851956ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<9518715530777777963ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<9582672856034496969ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<2875235401351023405ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<10031261976360763489ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<5223653993845792533ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<12923493826935231177ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<16811328735348207892ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<16811332033883092525ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<17259658332555689480ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<7050830764583196327ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<6909130305161178035ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<16384130727566876629ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<16384127429031991996ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<13346204371917125219ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<13346205471428753430ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<16891560331061928144ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<5323959883309341751ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<10944057886766318610ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<3672527266831566440ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<11823638576524027485ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<3672530565366451073ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<11823635277989142852ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<4460206687329269228ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<15624386071052607225ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<3745040402587948587ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<17479745972470505865ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<3982242242522983881ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<11540353342577402988ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<6019528506043436648ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<9715691805813100268ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<15698672930317548180ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
long cryptofuzz::repository::operationIndex<12506434490133466843ul>()
Line
Count
Source
66
6
constexpr long operationIndex(void) {
67
6
    constexpr long index = LUTCheck(id, OperationLUT, sizeof(OperationLUT) / sizeof(OperationLUT[0]));
68
6
    static_assert(-1 != index, "Not a valid operation");
69
6
    return index;
70
6
}
Unexecuted instantiation: long cryptofuzz::repository::operationIndex<14291370178360082506ul>()
71
72
template <uint64_t id>
73
534
constexpr uint64_t Operation(void) {
74
534
    (void)operationIndex<id>();
75
534
    return id;
76
534
}
unsigned long cryptofuzz::repository::Operation<5809491516167589196ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<2199449812569109303ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<14521310631484128166ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<17223730669190186232ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<2976759534500793820ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<14331211725752570280ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<10005503820668675355ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<14356609771627578971ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<9382889272173326955ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<3504204876962697477ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<3450355166456167260ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<3450358464991051893ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<8989551212334913101ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<9326441367258825100ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<16452550327545558230ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<13576222566899769656ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<5539743395198706529ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<15952101299761277882ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<12332401161757138384ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<14229822751382312176ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<8163694440785824261ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<13361868971281677690ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<18302666542519829747ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<4475220330049108872ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<8361011715369233209ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<2075488948259244450ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<8473266746052007431ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<8872906712023707375ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<5046600913796342794ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<5560960351281728901ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<15307561034024662125ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<2953094577370070712ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<10512925313610633373ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<12367986147865658621ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<6129199940879300273ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<8955882836668873941ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<6854737006333781894ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<5866728786590536975ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<16012901404492830732ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<13937406665088527893ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<3927672189283779123ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<3927674388307035545ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<2769893415746427291ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<2769895614769683713ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<7881979837569190506ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<4869767883566109890ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<4869765684542853468ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<12633938770290406723ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<12633940969313663145ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<11397056358600961605ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<11397054159577705183ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<13661847222560907774ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<12365045563994873029ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<13026559038354618177ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<9899993270756223732ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<12712141260368232507ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<7272519953370851956ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<9518715530777777963ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<9582672856034496969ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<2875235401351023405ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<10031261976360763489ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<5223653993845792533ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<12923493826935231177ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<16811328735348207892ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<16811332033883092525ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<17259658332555689480ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<7050830764583196327ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<6909130305161178035ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<16384130727566876629ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<16384127429031991996ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<13346204371917125219ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<13346205471428753430ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<16891560331061928144ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<5323959883309341751ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<10944057886766318610ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<3672527266831566440ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<11823638576524027485ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<3672530565366451073ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<11823635277989142852ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<4460206687329269228ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<15624386071052607225ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<3745040402587948587ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<17479745972470505865ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<3982242242522983881ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<11540353342577402988ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<6019528506043436648ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<9715691805813100268ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<15698672930317548180ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
unsigned long cryptofuzz::repository::Operation<12506434490133466843ul>()
Line
Count
Source
73
6
constexpr uint64_t Operation(void) {
74
6
    (void)operationIndex<id>();
75
6
    return id;
76
6
}
Unexecuted instantiation: unsigned long cryptofuzz::repository::Operation<14291370178360082506ul>()
77
78
template <uint64_t id>
79
10.8k
constexpr long digestIndex(void) {
80
10.8k
    constexpr long index = LUTCheck(id, DigestLUT, sizeof(DigestLUT) / sizeof(DigestLUT[0]));
81
10.8k
    static_assert(-1 != index, "Not a valid digest");
82
10.8k
    return index;
83
10.8k
}
long cryptofuzz::repository::digestIndex<9147977696441956301ul>()
Line
Count
Source
79
1
constexpr long digestIndex(void) {
80
1
    constexpr long index = LUTCheck(id, DigestLUT, sizeof(DigestLUT) / sizeof(DigestLUT[0]));
81
1
    static_assert(-1 != index, "Not a valid digest");
82
1
    return index;
83
1
}
long cryptofuzz::repository::digestIndex<9152758373000471604ul>()
Line
Count
Source
79
420
constexpr long digestIndex(void) {
80
420
    constexpr long index = LUTCheck(id, DigestLUT, sizeof(DigestLUT) / sizeof(DigestLUT[0]));
81
420
    static_assert(-1 != index, "Not a valid digest");
82
420
    return index;
83
420
}
long cryptofuzz::repository::digestIndex<8609869009161690924ul>()
Line
Count
Source
79
1
constexpr long digestIndex(void) {
80
1
    constexpr long index = LUTCheck(id, DigestLUT, sizeof(DigestLUT) / sizeof(DigestLUT[0]));
81
1
    static_assert(-1 != index, "Not a valid digest");
82
1
    return index;
83
1
}
long cryptofuzz::repository::digestIndex<12271565986551723033ul>()
Line
Count
Source
79
1
constexpr long digestIndex(void) {
80
1
    constexpr long index = LUTCheck(id, DigestLUT, sizeof(DigestLUT) / sizeof(DigestLUT[0]));
81
1
    static_assert(-1 != index, "Not a valid digest");
82
1
    return index;
83
1
}
Unexecuted instantiation: long cryptofuzz::repository::digestIndex<12653956904242592113ul>()
Unexecuted instantiation: long cryptofuzz::repository::digestIndex<12651120164242375408ul>()
Unexecuted instantiation: long cryptofuzz::repository::digestIndex<12131188603196099008ul>()
Unexecuted instantiation: long cryptofuzz::repository::digestIndex<10845628612712146973ul>()
long cryptofuzz::repository::digestIndex<7259431668663979670ul>()
Line
Count
Source
79
10.4k
constexpr long digestIndex(void) {
80
10.4k
    constexpr long index = LUTCheck(id, DigestLUT, sizeof(DigestLUT) / sizeof(DigestLUT[0]));
81
10.4k
    static_assert(-1 != index, "Not a valid digest");
82
10.4k
    return index;
83
10.4k
}
84
85
template <uint64_t id>
86
10.8k
constexpr uint64_t Digest(void) {
87
10.8k
    (void)digestIndex<id>();
88
10.8k
    return id;
89
10.8k
}
unsigned long cryptofuzz::repository::Digest<9147977696441956301ul>()
Line
Count
Source
86
1
constexpr uint64_t Digest(void) {
87
1
    (void)digestIndex<id>();
88
1
    return id;
89
1
}
unsigned long cryptofuzz::repository::Digest<9152758373000471604ul>()
Line
Count
Source
86
420
constexpr uint64_t Digest(void) {
87
420
    (void)digestIndex<id>();
88
420
    return id;
89
420
}
unsigned long cryptofuzz::repository::Digest<8609869009161690924ul>()
Line
Count
Source
86
1
constexpr uint64_t Digest(void) {
87
1
    (void)digestIndex<id>();
88
1
    return id;
89
1
}
unsigned long cryptofuzz::repository::Digest<12271565986551723033ul>()
Line
Count
Source
86
1
constexpr uint64_t Digest(void) {
87
1
    (void)digestIndex<id>();
88
1
    return id;
89
1
}
Unexecuted instantiation: unsigned long cryptofuzz::repository::Digest<12653956904242592113ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::Digest<12651120164242375408ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::Digest<12131188603196099008ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::Digest<10845628612712146973ul>()
unsigned long cryptofuzz::repository::Digest<7259431668663979670ul>()
Line
Count
Source
86
10.4k
constexpr uint64_t Digest(void) {
87
10.4k
    (void)digestIndex<id>();
88
10.4k
    return id;
89
10.4k
}
90
91
template <uint64_t id>
92
5.28k
constexpr long cipherIndex(void) {
93
5.28k
    constexpr long index = LUTCheck(id, CipherLUT, sizeof(CipherLUT) / sizeof(CipherLUT[0]));
94
5.28k
    static_assert(-1 != index, "Not a valid cipher");
95
5.28k
    return index;
96
5.28k
}
long cryptofuzz::repository::cipherIndex<11677781695485258375ul>()
Line
Count
Source
92
137
constexpr long cipherIndex(void) {
93
137
    constexpr long index = LUTCheck(id, CipherLUT, sizeof(CipherLUT) / sizeof(CipherLUT[0]));
94
137
    static_assert(-1 != index, "Not a valid cipher");
95
137
    return index;
96
137
}
long cryptofuzz::repository::cipherIndex<11757244974462610780ul>()
Line
Count
Source
92
791
constexpr long cipherIndex(void) {
93
791
    constexpr long index = LUTCheck(id, CipherLUT, sizeof(CipherLUT) / sizeof(CipherLUT[0]));
94
791
    static_assert(-1 != index, "Not a valid cipher");
95
791
    return index;
96
791
}
long cryptofuzz::repository::cipherIndex<11195972327075784600ul>()
Line
Count
Source
92
791
constexpr long cipherIndex(void) {
93
791
    constexpr long index = LUTCheck(id, CipherLUT, sizeof(CipherLUT) / sizeof(CipherLUT[0]));
94
791
    static_assert(-1 != index, "Not a valid cipher");
95
791
    return index;
96
791
}
Unexecuted instantiation: long cryptofuzz::repository::cipherIndex<2847396115823836733ul>()
Unexecuted instantiation: long cryptofuzz::repository::cipherIndex<12661830155089332476ul>()
Unexecuted instantiation: long cryptofuzz::repository::cipherIndex<4039651756406481437ul>()
Unexecuted instantiation: long cryptofuzz::repository::cipherIndex<228126321642777801ul>()
Unexecuted instantiation: long cryptofuzz::repository::cipherIndex<15036040797623165328ul>()
Unexecuted instantiation: long cryptofuzz::repository::cipherIndex<1420381962225422505ul>()
long cryptofuzz::repository::cipherIndex<2848339496800652546ul>()
Line
Count
Source
92
3.56k
constexpr long cipherIndex(void) {
93
3.56k
    constexpr long index = LUTCheck(id, CipherLUT, sizeof(CipherLUT) / sizeof(CipherLUT[0]));
94
3.56k
    static_assert(-1 != index, "Not a valid cipher");
95
3.56k
    return index;
96
3.56k
}
97
98
template <uint64_t id>
99
5.28k
constexpr uint64_t Cipher(void) {
100
5.28k
    (void)cipherIndex<id>();
101
5.28k
    return id;
102
5.28k
}
unsigned long cryptofuzz::repository::Cipher<11677781695485258375ul>()
Line
Count
Source
99
137
constexpr uint64_t Cipher(void) {
100
137
    (void)cipherIndex<id>();
101
137
    return id;
102
137
}
unsigned long cryptofuzz::repository::Cipher<11757244974462610780ul>()
Line
Count
Source
99
791
constexpr uint64_t Cipher(void) {
100
791
    (void)cipherIndex<id>();
101
791
    return id;
102
791
}
unsigned long cryptofuzz::repository::Cipher<11195972327075784600ul>()
Line
Count
Source
99
791
constexpr uint64_t Cipher(void) {
100
791
    (void)cipherIndex<id>();
101
791
    return id;
102
791
}
Unexecuted instantiation: unsigned long cryptofuzz::repository::Cipher<2847396115823836733ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::Cipher<12661830155089332476ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::Cipher<4039651756406481437ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::Cipher<228126321642777801ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::Cipher<15036040797623165328ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::Cipher<1420381962225422505ul>()
unsigned long cryptofuzz::repository::Cipher<2848339496800652546ul>()
Line
Count
Source
99
3.56k
constexpr uint64_t Cipher(void) {
100
3.56k
    (void)cipherIndex<id>();
101
3.56k
    return id;
102
3.56k
}
103
104
template <uint64_t id>
105
107k
constexpr long ecc_CurveIndex(void) {
106
107k
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
107k
    static_assert(-1 != index, "Not a valid ECC curve");
108
107k
    return index;
109
107k
}
Unexecuted instantiation: long cryptofuzz::repository::ecc_CurveIndex<9285907260089714809ul>()
Unexecuted instantiation: long cryptofuzz::repository::ecc_CurveIndex<16095704953245449449ul>()
long cryptofuzz::repository::ecc_CurveIndex<148697468333759777ul>()
Line
Count
Source
105
57.1k
constexpr long ecc_CurveIndex(void) {
106
57.1k
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
57.1k
    static_assert(-1 != index, "Not a valid ECC curve");
108
57.1k
    return index;
109
57.1k
}
long cryptofuzz::repository::ecc_CurveIndex<13791477697538481599ul>()
Line
Count
Source
105
38.3k
constexpr long ecc_CurveIndex(void) {
106
38.3k
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
38.3k
    static_assert(-1 != index, "Not a valid ECC curve");
108
38.3k
    return index;
109
38.3k
}
long cryptofuzz::repository::ecc_CurveIndex<18393850816800450172ul>()
Line
Count
Source
105
3.67k
constexpr long ecc_CurveIndex(void) {
106
3.67k
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
3.67k
    static_assert(-1 != index, "Not a valid ECC curve");
108
3.67k
    return index;
109
3.67k
}
long cryptofuzz::repository::ecc_CurveIndex<18415819059127753777ul>()
Line
Count
Source
105
3.39k
constexpr long ecc_CurveIndex(void) {
106
3.39k
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
3.39k
    static_assert(-1 != index, "Not a valid ECC curve");
108
3.39k
    return index;
109
3.39k
}
long cryptofuzz::repository::ecc_CurveIndex<4115407361675055995ul>()
Line
Count
Source
105
5
constexpr long ecc_CurveIndex(void) {
106
5
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
5
    static_assert(-1 != index, "Not a valid ECC curve");
108
5
    return index;
109
5
}
Unexecuted instantiation: long cryptofuzz::repository::ecc_CurveIndex<4121181996745284817ul>()
long cryptofuzz::repository::ecc_CurveIndex<660596512491047338ul>()
Line
Count
Source
105
5
constexpr long ecc_CurveIndex(void) {
106
5
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
5
    static_assert(-1 != index, "Not a valid ECC curve");
108
5
    return index;
109
5
}
Unexecuted instantiation: long cryptofuzz::repository::ecc_CurveIndex<658612993514133144ul>()
long cryptofuzz::repository::ecc_CurveIndex<11779124438786632940ul>()
Line
Count
Source
105
5
constexpr long ecc_CurveIndex(void) {
106
5
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
5
    static_assert(-1 != index, "Not a valid ECC curve");
108
5
    return index;
109
5
}
Unexecuted instantiation: long cryptofuzz::repository::ecc_CurveIndex<11773349803716404118ul>()
long cryptofuzz::repository::ecc_CurveIndex<93466273019230966ul>()
Line
Count
Source
105
5
constexpr long ecc_CurveIndex(void) {
106
5
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
5
    static_assert(-1 != index, "Not a valid ECC curve");
108
5
    return index;
109
5
}
Unexecuted instantiation: long cryptofuzz::repository::ecc_CurveIndex<99100170601048780ul>()
long cryptofuzz::repository::ecc_CurveIndex<7334040403917067855ul>()
Line
Count
Source
105
5
constexpr long ecc_CurveIndex(void) {
106
5
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
5
    static_assert(-1 != index, "Not a valid ECC curve");
108
5
    return index;
109
5
}
Unexecuted instantiation: long cryptofuzz::repository::ecc_CurveIndex<7332092069312256413ul>()
long cryptofuzz::repository::ecc_CurveIndex<16102541598515416313ul>()
Line
Count
Source
105
5
constexpr long ecc_CurveIndex(void) {
106
5
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
5
    static_assert(-1 != index, "Not a valid ECC curve");
108
5
    return index;
109
5
}
long cryptofuzz::repository::ecc_CurveIndex<16126488961773121268ul>()
Line
Count
Source
105
5
constexpr long ecc_CurveIndex(void) {
106
5
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
5
    static_assert(-1 != index, "Not a valid ECC curve");
108
5
    return index;
109
5
}
long cryptofuzz::repository::ecc_CurveIndex<17296010267823331937ul>()
Line
Count
Source
105
4.67k
constexpr long ecc_CurveIndex(void) {
106
4.67k
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
4.67k
    static_assert(-1 != index, "Not a valid ECC curve");
108
4.67k
    return index;
109
4.67k
}
long cryptofuzz::repository::ecc_CurveIndex<17304582060475161868ul>()
Line
Count
Source
105
5
constexpr long ecc_CurveIndex(void) {
106
5
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
5
    static_assert(-1 != index, "Not a valid ECC curve");
108
5
    return index;
109
5
}
long cryptofuzz::repository::ecc_CurveIndex<4023315158657214361ul>()
Line
Count
Source
105
5
constexpr long ecc_CurveIndex(void) {
106
5
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
5
    static_assert(-1 != index, "Not a valid ECC curve");
108
5
    return index;
109
5
}
long cryptofuzz::repository::ecc_CurveIndex<85815263693034390ul>()
Line
Count
Source
105
5
constexpr long ecc_CurveIndex(void) {
106
5
    constexpr long index = LUTCheck(id, ECC_CurveLUT, sizeof(ECC_CurveLUT) / sizeof(ECC_CurveLUT[0]));
107
5
    static_assert(-1 != index, "Not a valid ECC curve");
108
5
    return index;
109
5
}
110
111
template <uint64_t id>
112
107k
constexpr uint64_t ECC_Curve(void) {
113
107k
    (void)ecc_CurveIndex<id>();
114
107k
    return id;
115
107k
}
Unexecuted instantiation: unsigned long cryptofuzz::repository::ECC_Curve<9285907260089714809ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::ECC_Curve<16095704953245449449ul>()
unsigned long cryptofuzz::repository::ECC_Curve<148697468333759777ul>()
Line
Count
Source
112
57.1k
constexpr uint64_t ECC_Curve(void) {
113
57.1k
    (void)ecc_CurveIndex<id>();
114
57.1k
    return id;
115
57.1k
}
unsigned long cryptofuzz::repository::ECC_Curve<13791477697538481599ul>()
Line
Count
Source
112
38.3k
constexpr uint64_t ECC_Curve(void) {
113
38.3k
    (void)ecc_CurveIndex<id>();
114
38.3k
    return id;
115
38.3k
}
unsigned long cryptofuzz::repository::ECC_Curve<18393850816800450172ul>()
Line
Count
Source
112
3.67k
constexpr uint64_t ECC_Curve(void) {
113
3.67k
    (void)ecc_CurveIndex<id>();
114
3.67k
    return id;
115
3.67k
}
unsigned long cryptofuzz::repository::ECC_Curve<18415819059127753777ul>()
Line
Count
Source
112
3.39k
constexpr uint64_t ECC_Curve(void) {
113
3.39k
    (void)ecc_CurveIndex<id>();
114
3.39k
    return id;
115
3.39k
}
unsigned long cryptofuzz::repository::ECC_Curve<4115407361675055995ul>()
Line
Count
Source
112
5
constexpr uint64_t ECC_Curve(void) {
113
5
    (void)ecc_CurveIndex<id>();
114
5
    return id;
115
5
}
Unexecuted instantiation: unsigned long cryptofuzz::repository::ECC_Curve<4121181996745284817ul>()
unsigned long cryptofuzz::repository::ECC_Curve<660596512491047338ul>()
Line
Count
Source
112
5
constexpr uint64_t ECC_Curve(void) {
113
5
    (void)ecc_CurveIndex<id>();
114
5
    return id;
115
5
}
Unexecuted instantiation: unsigned long cryptofuzz::repository::ECC_Curve<658612993514133144ul>()
unsigned long cryptofuzz::repository::ECC_Curve<11779124438786632940ul>()
Line
Count
Source
112
5
constexpr uint64_t ECC_Curve(void) {
113
5
    (void)ecc_CurveIndex<id>();
114
5
    return id;
115
5
}
Unexecuted instantiation: unsigned long cryptofuzz::repository::ECC_Curve<11773349803716404118ul>()
unsigned long cryptofuzz::repository::ECC_Curve<93466273019230966ul>()
Line
Count
Source
112
5
constexpr uint64_t ECC_Curve(void) {
113
5
    (void)ecc_CurveIndex<id>();
114
5
    return id;
115
5
}
Unexecuted instantiation: unsigned long cryptofuzz::repository::ECC_Curve<99100170601048780ul>()
unsigned long cryptofuzz::repository::ECC_Curve<7334040403917067855ul>()
Line
Count
Source
112
5
constexpr uint64_t ECC_Curve(void) {
113
5
    (void)ecc_CurveIndex<id>();
114
5
    return id;
115
5
}
Unexecuted instantiation: unsigned long cryptofuzz::repository::ECC_Curve<7332092069312256413ul>()
unsigned long cryptofuzz::repository::ECC_Curve<16102541598515416313ul>()
Line
Count
Source
112
5
constexpr uint64_t ECC_Curve(void) {
113
5
    (void)ecc_CurveIndex<id>();
114
5
    return id;
115
5
}
unsigned long cryptofuzz::repository::ECC_Curve<16126488961773121268ul>()
Line
Count
Source
112
5
constexpr uint64_t ECC_Curve(void) {
113
5
    (void)ecc_CurveIndex<id>();
114
5
    return id;
115
5
}
unsigned long cryptofuzz::repository::ECC_Curve<17296010267823331937ul>()
Line
Count
Source
112
4.67k
constexpr uint64_t ECC_Curve(void) {
113
4.67k
    (void)ecc_CurveIndex<id>();
114
4.67k
    return id;
115
4.67k
}
unsigned long cryptofuzz::repository::ECC_Curve<17304582060475161868ul>()
Line
Count
Source
112
5
constexpr uint64_t ECC_Curve(void) {
113
5
    (void)ecc_CurveIndex<id>();
114
5
    return id;
115
5
}
unsigned long cryptofuzz::repository::ECC_Curve<4023315158657214361ul>()
Line
Count
Source
112
5
constexpr uint64_t ECC_Curve(void) {
113
5
    (void)ecc_CurveIndex<id>();
114
5
    return id;
115
5
}
unsigned long cryptofuzz::repository::ECC_Curve<85815263693034390ul>()
Line
Count
Source
112
5
constexpr uint64_t ECC_Curve(void) {
113
5
    (void)ecc_CurveIndex<id>();
114
5
    return id;
115
5
}
116
117
template <uint64_t id>
118
137k
constexpr long calcOpIndex(void) {
119
137k
    constexpr long index = LUTCheck(id, CalcOpLUT, sizeof(CalcOpLUT) / sizeof(CalcOpLUT[0]));
120
137k
    static_assert(-1 != index, "Not a valid calculation operation");
121
137k
    return index;
122
137k
}
long cryptofuzz::repository::calcOpIndex<8492831560678184199ul>()
Line
Count
Source
118
68.3k
constexpr long calcOpIndex(void) {
119
68.3k
    constexpr long index = LUTCheck(id, CalcOpLUT, sizeof(CalcOpLUT) / sizeof(CalcOpLUT[0]));
120
68.3k
    static_assert(-1 != index, "Not a valid calculation operation");
121
68.3k
    return index;
122
68.3k
}
long cryptofuzz::repository::calcOpIndex<2533057117655612930ul>()
Line
Count
Source
118
53.3k
constexpr long calcOpIndex(void) {
119
53.3k
    constexpr long index = LUTCheck(id, CalcOpLUT, sizeof(CalcOpLUT) / sizeof(CalcOpLUT[0]));
120
53.3k
    static_assert(-1 != index, "Not a valid calculation operation");
121
53.3k
    return index;
122
53.3k
}
long cryptofuzz::repository::calcOpIndex<752527180851484917ul>()
Line
Count
Source
118
15.3k
constexpr long calcOpIndex(void) {
119
15.3k
    constexpr long index = LUTCheck(id, CalcOpLUT, sizeof(CalcOpLUT) / sizeof(CalcOpLUT[0]));
120
15.3k
    static_assert(-1 != index, "Not a valid calculation operation");
121
15.3k
    return index;
122
15.3k
}
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<7114552031224698798ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<10207793044261461432ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<7508375228105742854ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<14465538327966413692ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<10633833424446033180ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<13646095757308424912ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<12211643382727132651ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<12110391648600810285ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<1317996975705594123ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<7829063627812952999ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<14199920696347809146ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<12168006286085220942ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<840523479701349425ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<5940576748551985711ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<11778408755722008352ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<5477127052586603538ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<10998724852397858805ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<15477000640961809998ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<5243674767385134835ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<7367988338173335495ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<17987934071602219992ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<16951741325418416169ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<15092317424047335748ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<17368484737873471187ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<10935818379206750101ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<9784528180127606591ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<12213030599419264540ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<7653653549291063340ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<278502619037614225ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<8434802902606449387ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<2320969532226616953ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<16314490223308766513ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<17389184683344743809ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<9202869717780373138ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<7245952310988955231ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<3246105777544845851ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<11100445629165456852ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<4838132959585393335ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<1135892590552068761ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<2316310815682592019ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<18160400994409278475ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<1431659550035644982ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<2652194927012011212ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<6165539722035558717ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<7661139356336055519ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<4944816444068270084ul>()
Unexecuted instantiation: long cryptofuzz::repository::calcOpIndex<2204880375417104544ul>()
123
124
template <uint64_t id>
125
137k
constexpr uint64_t CalcOp(void) {
126
137k
    (void)calcOpIndex<id>();
127
137k
    return id;
128
137k
}
unsigned long cryptofuzz::repository::CalcOp<8492831560678184199ul>()
Line
Count
Source
125
68.3k
constexpr uint64_t CalcOp(void) {
126
68.3k
    (void)calcOpIndex<id>();
127
68.3k
    return id;
128
68.3k
}
unsigned long cryptofuzz::repository::CalcOp<2533057117655612930ul>()
Line
Count
Source
125
53.3k
constexpr uint64_t CalcOp(void) {
126
53.3k
    (void)calcOpIndex<id>();
127
53.3k
    return id;
128
53.3k
}
unsigned long cryptofuzz::repository::CalcOp<752527180851484917ul>()
Line
Count
Source
125
15.3k
constexpr uint64_t CalcOp(void) {
126
15.3k
    (void)calcOpIndex<id>();
127
15.3k
    return id;
128
15.3k
}
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<7114552031224698798ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<10207793044261461432ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<7508375228105742854ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<14465538327966413692ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<10633833424446033180ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<13646095757308424912ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<12211643382727132651ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<12110391648600810285ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<1317996975705594123ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<7829063627812952999ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<14199920696347809146ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<12168006286085220942ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<840523479701349425ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<5940576748551985711ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<11778408755722008352ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<5477127052586603538ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<10998724852397858805ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<15477000640961809998ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<5243674767385134835ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<7367988338173335495ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<17987934071602219992ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<16951741325418416169ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<15092317424047335748ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<17368484737873471187ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<10935818379206750101ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<9784528180127606591ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<12213030599419264540ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<7653653549291063340ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<278502619037614225ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<8434802902606449387ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<2320969532226616953ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<16314490223308766513ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<17389184683344743809ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<9202869717780373138ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<7245952310988955231ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<3246105777544845851ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<11100445629165456852ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<4838132959585393335ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<1135892590552068761ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<2316310815682592019ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<18160400994409278475ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<1431659550035644982ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<2652194927012011212ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<6165539722035558717ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<7661139356336055519ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<4944816444068270084ul>()
Unexecuted instantiation: unsigned long cryptofuzz::repository::CalcOp<2204880375417104544ul>()
129
130
} /* namespace repository */
131
} /* namespace cryptofuzz */
132
133
1.73k
#define CF_CIPHER(s) cryptofuzz::repository::Cipher<fuzzing::datasource::ID("Cryptofuzz/Cipher/" s)>()
134
0
#define CF_DIGEST(s) cryptofuzz::repository::Digest<fuzzing::datasource::ID("Cryptofuzz/Digest/" s)>()
135
287
#define CF_MODULE(s) cryptofuzz::repository::Module<fuzzing::datasource::ID("Cryptofuzz/Module/" s)>()
136
11.2M
#define CF_OPERATION(s) cryptofuzz::repository::Operation<fuzzing::datasource::ID("Cryptofuzz/Operation/" s)>()
137
25.2k
#define CF_ECC_CURVE(s) cryptofuzz::repository::ECC_Curve<fuzzing::datasource::ID("Cryptofuzz/ECC_Curve/" s)>()
138
165k
#define CF_CALCOP(s) cryptofuzz::repository::CalcOp<fuzzing::datasource::ID("Cryptofuzz/CalcOp/" s)>()