You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
Hi,
I've written implementations of DES (package crypto/des) and TDEA, aka
Triple DES, (package crypto/tdea) for Go. Would this be a kosher/
desirable addition? If so, I'll submit a CL for it.
Thanks,
Chris
Tim Becker
unread,
Aug 29, 2010, 3:28:16 PM8/29/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
> I've written implementations of DES (package crypto/des) and TDEA, aka
> Triple DES, (package crypto/tdea) for Go.
Hi Chris,
that's funny, I implemented the same thing :)
Maybe we should compare notes.
I am assuming it was a deliberate choice not to include it in the
standard lib, though.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to calennert, golang-nuts
Sure. I'd be inclined to put them both in crypto/des though. The only reason to have DES is so you can do it three times. See http://golang.org/doc/contribute.html if you haven't already.