1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
374 B

/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (c) 2022 Rockchip Electronics Co. Ltd. */
#ifndef __RK_CRYPTO_V2_PKA_H__
#define __RK_CRYPTO_V2_PKA_H__
#include "rk_crypto_bignum.h"
void rk_pka_set_crypto_base(void __iomem *base);
int rk_pka_expt_mod(struct rk_bignum *in,
struct rk_bignum *e,
struct rk_bignum *n,
struct rk_bignum *out);
#endif