ECB mode in TripleDES

Hi,
I have a need to have ability to encrypt/decrypt using Triple DES algorithm using ECB mode.
As I searched around, I got to know that ecb is not at all supported since it is so insecure. Although it is easier to implement TDES in ECB mode as per: https://github.com/golang/go/issues/5597

Is there any existing implementation that I can take advantage of?

It is essentially just a for loop over the data. There is even an example implementation in the link you posted. :slight_smile:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.