| # Copyright lowRISC contributors. |
| # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| # SPDX-License-Identifier: Apache-2.0 |
| |
| package(default_visibility = ["//visibility:public"]) |
| |
| load("//rules:opentitan.bzl", "OPENTITAN_CPU") |
| |
| cc_library( |
| name = "rsa_3072_verify", |
| srcs = ["rsa_3072_verify.c"], |
| hdrs = ["rsa_3072_verify.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/base:hardened", |
| "//sw/device/lib/base:macros", |
| "//sw/device/lib/base:memory", |
| "//sw/device/lib/crypto:otbn_util", |
| "//sw/device/lib/crypto/drivers:hmac", |
| "//sw/device/lib/crypto/drivers:otbn", |
| "//sw/otbn/crypto:run_rsa_verify_3072", |
| ], |
| ) |