blob: c1cf004f58cdec70d6a3b6ded977687e27659f72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// Created by Evgeny Sidorov on 12/04/17.
//
#include "proxy_avx2.h"
#include <library/cpp/digest/argonish/internal/argon2/argon2_base.h>
#include <library/cpp/digest/argonish/internal/argon2/argon2_avx2.h>
#include <library/cpp/digest/argonish/internal/blake2b/blake2b.h>
#include <library/cpp/digest/argonish/internal/blake2b/blake2b_avx2.h>
#define ZEROUPPER _mm256_zeroupper();
namespace NArgonish {
ARGON2_PROXY_CLASS_IMPL(AVX2)
BLAKE2B_PROXY_CLASS_IMPL(AVX2)
}
#undef ZEROUPPER
|