blake2s_mac.c 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright 2018-2021 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. /* Constants */
  10. #define BLAKE2_CTX BLAKE2S_CTX
  11. #define BLAKE2_PARAM BLAKE2S_PARAM
  12. #define BLAKE2_KEYBYTES BLAKE2S_KEYBYTES
  13. #define BLAKE2_OUTBYTES BLAKE2S_OUTBYTES
  14. #define BLAKE2_PERSONALBYTES BLAKE2S_PERSONALBYTES
  15. #define BLAKE2_SALTBYTES BLAKE2S_SALTBYTES
  16. #define BLAKE2_BLOCKBYTES BLAKE2S_BLOCKBYTES
  17. /* Function names */
  18. #define BLAKE2_PARAM_INIT ossl_blake2s_param_init
  19. #define BLAKE2_INIT_KEY ossl_blake2s_init_key
  20. #define BLAKE2_UPDATE ossl_blake2s_update
  21. #define BLAKE2_FINAL ossl_blake2s_final
  22. #define BLAKE2_PARAM_SET_DIGEST_LENGTH ossl_blake2s_param_set_digest_length
  23. #define BLAKE2_PARAM_SET_KEY_LENGTH ossl_blake2s_param_set_key_length
  24. #define BLAKE2_PARAM_SET_PERSONAL ossl_blake2s_param_set_personal
  25. #define BLAKE2_PARAM_SET_SALT ossl_blake2s_param_set_salt
  26. /* OSSL_DISPATCH symbol */
  27. #define BLAKE2_FUNCTIONS ossl_blake2smac_functions
  28. #include "blake2_mac_impl.c"