mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-09-02 23:23:28 +02:00
Update to v106r65 release.
byuu says: This synchronizes bsnes/higan with many recent internal nall changes. This will be the last WIP until I am situated in Japan. Apologies for the bugfixes that didn't get applied yet, I ran out of time.
This commit is contained in:
@@ -5,6 +5,12 @@
|
||||
namespace nall { namespace MAC {
|
||||
|
||||
struct Poly1305 {
|
||||
auto authenticate(array_view<uint8_t> memory, uint256_t nonce) -> uint128_t {
|
||||
initialize(nonce);
|
||||
process(memory.data(), memory.size());
|
||||
return finish();
|
||||
}
|
||||
|
||||
auto initialize(uint256_t key) -> void {
|
||||
uint64_t t0 = key >> 0;
|
||||
uint64_t t1 = key >> 64;
|
||||
|
Reference in New Issue
Block a user