Software APIs
Main Page
File List
Globals
All
a
b
c
d
e
g
h
i
k
l
m
o
p
r
s
t
u
w
Functions
a
b
c
d
g
h
i
l
m
o
p
r
s
t
u
w
Variables
k
t
Typedefs
a
b
c
d
h
i
l
m
o
r
s
t
u
Enumerations
b
d
h
i
l
o
s
t
Enumerator
k
Macros
a
c
d
e
h
i
l
m
o
p
s
t
u
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Functions
a
b
c
d
e
f
g
h
i
k
m
o
p
r
s
t
w
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Enumerations
Enumerator
sw
device
silicon_creator
lib
sigverify
mock_mod_exp_ibex.cc
1
// Copyright lowRISC contributors (OpenTitan project).
2
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3
// SPDX-License-Identifier: Apache-2.0
4
5
#include "sw/device/silicon_creator/lib/sigverify/mock_mod_exp_ibex.h"
6
7
namespace
rom_test {
8
extern
"C"
{
9
rom_error_t sigverify_mod_exp_ibex(
const
sigverify_rsa_key_t
*key,
10
const
sigverify_rsa_buffer_t
*sig,
11
sigverify_rsa_buffer_t
*result) {
12
return
MockSigverifyModExpIbex::Instance().mod_exp(key, sig, result);
13
}
14
}
// extern "C"
15
}
// namespace rom_test
Return to
OpenTitan Documentation