Clear conversion wanrings under MSVC
parent
d47f69acf3
commit
37828ff0ef
2
aria.cpp
2
aria.cpp
|
|
@ -40,7 +40,7 @@ using CryptoPP::ARIATab::X2;
|
||||||
using CryptoPP::ARIATab::KRK;
|
using CryptoPP::ARIATab::KRK;
|
||||||
|
|
||||||
inline byte ARIA_BRF(const word32 x, const int y) {
|
inline byte ARIA_BRF(const word32 x, const int y) {
|
||||||
return GETBYTE(x, y);
|
return static_cast<byte>(GETBYTE(x, y));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Key XOR Layer
|
// Key XOR Layer
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue