blob: 0bc51866fdf6559f5e0a25b584e9b869548c318d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//
// Created by Evgeny Sidorov on 12/04/17.
//
#include "proxy_ref.h"
#include <library/cpp/digest/argonish/internal/argon2/argon2_base.h>
#include <library/cpp/digest/argonish/internal/argon2/argon2_ref.h>
#include <library/cpp/digest/argonish/internal/blake2b/blake2b.h>
#include <library/cpp/digest/argonish/internal/blake2b/blake2b_ref.h>
#include <stdexcept>
#define ZEROUPPER ;
namespace NArgonish {
ARGON2_PROXY_CLASS_IMPL(REF)
BLAKE2B_PROXY_CLASS_IMPL(REF)
}
#undef ZEROUPPER
|