mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
5 files in Crypto were licensed under GPL-3.0-only which is incompatible with our project's GPL-2.0-only license. They have now been corrected to use GPL-2.0-or-later.
13 lines
424 B
C
13 lines
424 B
C
#pragma once
|
|
|
|
// Copyright (C) 2014 Hykem <hykem@hotmail.com>
|
|
// Licensed under the terms of the GNU GPL, version 2.0 or later versions.
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
#include "util/types.hpp"
|
|
|
|
int ecdsa_set_curve(const u8* p, const u8* a, const u8* b, const u8* N, const u8* Gx, const u8* Gy);
|
|
void ecdsa_set_pub(const u8* Q);
|
|
void ecdsa_set_priv(const u8* k);
|
|
int ecdsa_verify(u8* hash, u8* R, u8* S);
|