Page 1 of 1

sha384_vector and sha512_vector

Posted: Thu Nov 04, 2021 6:29 pm
by godofwars1111
HI,

I moved to the lastest commit of the release/v4.2 branch

When I build my project
  1. C:/esp32/esp-idf/components/wpa_supplicant/src/tls/x509v3.c:1742:3: error: implicit declaration of function 'sha384_vector'; did you mean 'sha256_vector'? [-Werror=implicit-function-declaration]
  2.    sha384_vector(1, &cert->tbs_cert_start, &cert->tbs_cert_len,
  3.    ^~~~~~~~~~~~~
  4.    sha256_vector
  5. C:/esp32/esp-idf/components/wpa_supplicant/src/tls/x509v3.c:1749:3: error: implicit declaration of function 'sha512_vector'; did you mean 'sha1_vector'? [-Werror=implicit-function-declaration]
  6.    sha512_vector(1, &cert->tbs_cert_start, &cert->tbs_cert_len,
  7.    ^~~~~~~~~~~~~
  8.    sha1_vector
  9. cc1.exe: some warnings being treated as errors
When i looking for the function sha512_vector and sha384_vector i didn't find them

Re: sha384_vector and sha512_vector

Posted: Sat Nov 06, 2021 3:55 am
by ESP_Sprite
Did you do a 'git submodule update --recursive --init'? If not, you can try to see if that helps.

Re: sha384_vector and sha512_vector

Posted: Mon Nov 08, 2021 3:37 pm
by godofwars1111
yes i did it. I redo the command and i got the same issue

Re: sha384_vector and sha512_vector

Posted: Tue Nov 16, 2021 10:03 pm
by Coopdis
I have the same issue