proxy_ssse3.cpp 486 B

123456789101112131415161718
  1. //
  2. // Created by Evgeny Sidorov on 12/04/17.
  3. //
  4. #include "proxy_ssse3.h"
  5. #include <library/cpp/digest/argonish/internal/argon2/argon2_base.h>
  6. #include <library/cpp/digest/argonish/internal/argon2/argon2_ssse3.h>
  7. #include <library/cpp/digest/argonish/internal/blake2b/blake2b.h>
  8. #include <library/cpp/digest/argonish/internal/blake2b/blake2b_ssse3.h>
  9. #define ZEROUPPER ;
  10. namespace NArgonish {
  11. ARGON2_PROXY_CLASS_IMPL(SSSE3)
  12. BLAKE2B_PROXY_CLASS_IMPL(SSSE3)
  13. }
  14. #undef ZEROUPPER