2018-02-16 19:01:04 +03:00
|
|
|
#ifndef LIBI2PD_CPU_H
|
|
|
|
#define LIBI2PD_CPU_H
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace cpu
|
|
|
|
{
|
2020-03-01 13:25:50 +03:00
|
|
|
extern bool aesni;
|
|
|
|
extern bool avx;
|
2018-02-16 19:01:04 +03:00
|
|
|
|
2020-03-01 13:25:50 +03:00
|
|
|
void Detect();
|
2018-02-16 19:01:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|