blob: 3e63c9ad621f27773da13df6e9321ef026f938ae (
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_sse2.h"
#include <library/cpp/digest/argonish/internal/argon2/argon2_base.h>
#include <library/cpp/digest/argonish/internal/argon2/argon2_sse2.h>
#include <library/cpp/digest/argonish/internal/blake2b/blake2b.h>
#include <library/cpp/digest/argonish/internal/blake2b/blake2b_sse2.h>
#define ZEROUPPER ;
namespace NArgonish {
ARGON2_PROXY_CLASS_IMPL(SSE2)
BLAKE2B_PROXY_CLASS_IMPL(SSE2)
}
#undef ZEROUPPER
|