mirror of
https://github.com/jakcron/nstool
synced 2025-02-12 04:31:03 +00:00
14 lines
235 B
C
14 lines
235 B
C
![]() |
#pragma once
|
||
|
#include <es/sign.h>
|
||
|
#include <crypto/sha.h>
|
||
|
|
||
|
namespace es
|
||
|
{
|
||
|
|
||
|
namespace sign
|
||
|
{
|
||
|
es::sign::SignatureAlgo getSignatureAlgo(es::sign::SignatureId sign_id);
|
||
|
es::sign::HashAlgo getHashAlgo(es::sign::SignatureId sign_id);
|
||
|
}
|
||
|
|
||
|
}
|