Coverage Report

Created: 2026-01-17 06:05

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c
Line
Count
Source
1
2
#include "crypto_scalarmult.h"
3
4
const char *
5
crypto_scalarmult_primitive(void)
6
0
{
7
0
    return crypto_scalarmult_PRIMITIVE;
8
0
}
9
10
int
11
crypto_scalarmult_base(unsigned char *q, const unsigned char *n)
12
0
{
13
0
    return crypto_scalarmult_curve25519_base(q, n);
14
0
}
15
16
int
17
crypto_scalarmult(unsigned char *q, const unsigned char *n,
18
                  const unsigned char *p)
19
0
{
20
0
    return crypto_scalarmult_curve25519(q, n, p);
21
0
}
22
23
size_t
24
crypto_scalarmult_bytes(void)
25
0
{
26
0
    return crypto_scalarmult_BYTES;
27
0
}
28
29
size_t
30
crypto_scalarmult_scalarbytes(void)
31
0
{
32
0
    return crypto_scalarmult_SCALARBYTES;
33
0
}