> On 10 Dec 2017, at 10:01, Ben Coman <b...@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-9c59c606a572

Reply via email to