summaryrefslogtreecommitdiff
path: root/algparam.cpp
blob: 1b980b6e284e686b222a9a948b52183dd641002e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// algparam.cpp - written and placed in the public domain by Wei Dai

#include "pch.h"
#include "algparam.h"
#include "integer.h"

NAMESPACE_BEGIN(CryptoPP)

const std::type_info & IntegerTypeId()
{
	static const std::type_info &s_typeidInteger = typeid(Integer);
	return s_typeidInteger;
}

void AssignIntToInteger(void *pInteger, const void *pInt)
{
	*reinterpret_cast<Integer *>(pInteger) = *reinterpret_cast<const int *>(pInt);
}

NAMESPACE_END