mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-01-03 16:13:34 +08:00
988a8d3686
for safekeeping
15 lines
295 B
C++
15 lines
295 B
C++
|
|
#include "signer.h"
|
|
#include "stdio.h"
|
|
#include "memory.h"
|
|
|
|
//----------------------------------------------
|
|
|
|
void CSigner::SetPublicKey(unsigned char* pbKey)
|
|
{
|
|
memcpy(&m_e, pbKey, sizeof(m_e));
|
|
memcpy(m_n, pbKey+sizeof(m_e), sizeof(m_n));
|
|
}
|
|
|
|
//----------------------------------------------
|