# HG changeset patch # User Stefan Vogel # Date 1351699069 -3600 # Node ID b915ce3626704add88e8d8dfe682c0a0d8dde00d # Parent ef3591302afadc699a0d768c3e012c52b8b3e24d #hmac moved to libcrypr diff -r ef3591302afa -r b915ce362670 HashStream.st --- a/HashStream.st Wed Oct 31 14:41:14 2012 +0100 +++ b/HashStream.st Wed Oct 31 16:57:49 2012 +0100 @@ -257,18 +257,6 @@ " ! -hmac - "answer a hmac stream with myself" - - ^ HmacStream on:self - - " - (SHA1Stream new hmac key:'exampleKey') digestMessage:'message to generate MAC of' - " - - "Modified (comment): / 09-01-2012 / 13:51:01 / cg" -! - reset "initialize to a clean state" @@ -401,9 +389,9 @@ !HashStream class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/HashStream.st,v 1.25 2012-01-23 09:01:40 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/HashStream.st,v 1.26 2012-10-31 15:57:49 stefan Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libbasic/HashStream.st,v 1.25 2012-01-23 09:01:40 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/HashStream.st,v 1.26 2012-10-31 15:57:49 stefan Exp $' ! !