Dec. 10, 2017
10:23 a.m.
On 10 Dec 2017, at 10:01, Ben Coman <btc@openinworld.com> wrote:
Can anyone recommend libraries (native Smalltalk or via FFI) to do generate a HMAC-SHA512 ?
cheers -ben
Well Pharo itself of course ! (HMAC on: SHA256) key: (ByteArray new: 32); digestMessage: #[1 2 3]. SHA256 new hmac key: (ByteArray new: 32); digestMessage: #[1 2 3]. Sven PS: You might like this one too https://medium.com/concerning-pharo/the-code-behind-google-authenticator-9c5...