I'm trying to implement HMAC SHA512
encryption to a data string before sending it to the server, as it's their requirement.
I have found many possible solutions for that online, however all of them require including some module or framework.
Isn't HMAC
and SHA512
not supported by swift 3.1 natively?
Sorry if it's a stupid question, I'm relatively new to swift.
If it's available, how can I simply encrypt some data using hmac sha512
?
Thanks.