proxy_ref.cpp 498 B

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