SA-MP/server/signer.cpp
RD42 988a8d3686 backup
for safekeeping
2024-09-27 23:11:36 +08:00

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));
}
//----------------------------------------------