karlmcguire / ige

IGE block cipher mode for Go.
MIT License
14 stars 4 forks source link

In-place encryption/decryption does not work #1

Open flyingmutant opened 4 years ago

flyingmutant commented 4 years ago

Thanks a lot for the module, really nice work!

cipher.BlockMode explicitly allows dst and src to completely overlap, for in-place encryption/decryption. Unfortunately, this does not work in ige.

karlmcguire commented 4 years ago

Thanks a lot for the module, really nice work!

cipher.BlockMode explicitly allows dst and src to completely overlap, for in-place encryption/decryption. Unfortunately, this does not work in ige.

Thanks for the heads up, I'll take a look at it.