aboutsummaryrefslogtreecommitdiff
path: root/src/lib/hash/sha1.go
AgeCommit message (Collapse)Author
2009-05-07make go/src/lib/hash one directory per packageRob Pike
(slipped through the cracks last time) R=rsc DELTA=2436 (1337 added, 1090 deleted, 9 changed) OCL=28427 CL=28443
2009-04-17Step 1 of the Big Error Shift: make os.Error an interface and replace ↵Rob Pike
*os.Errors with os.Errors. lib/template updated to use new setup; its clients also updated. Step 2 will make os's error support internally much cleaner. R=rsc OCL=27586 CL=27586
2009-04-15code changes for array conversion.Russ Cox
as a reminder, the old conversion was that you could write var arr [10]byte; var slice []byte; slice = arr; but now you have to write slice = &arr; the change eliminates an implicit &, so that the only implicit &s left are in the . operator and in string(arr). also, removed utf8.EncodeRuneToString in favor of string(rune). R=r DELTA=83 (1 added, 23 deleted, 59 changed) OCL=27531 CL=27534
2009-03-07document hashRob Pike
R=rsc DELTA=50 (33 added, 4 deleted, 13 changed) OCL=25878 CL=25887
2009-01-20delete exportRuss Cox
TBR=r OCL=23121 CL=23127
2009-01-16casify hashRuss Cox
R=r DELTA=235 (6 added, 26 deleted, 203 changed) OCL=22907 CL=22938
2009-01-06new new & makeRuss Cox
R=r OCL=22166 CL=22166
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-12-18convert *[] to [].Russ Cox
R=r OCL=21563 CL=21571
2008-11-24hash writers: adler32, crc32, md5, sha1.Russ Cox
all could probably be made faster. R=r DELTA=929 (929 added, 0 deleted, 0 changed) OCL=19879 CL=19911