buttery_cpu
buttery_cpu

Reputation: 45

How would I use the AES/CCM/NoPadding cipher from java in golang?

I need to use the AES/CCM/NoPadding cipher (from java) in golang, but I can't find anything about aes-ccm in the std lib.

Upvotes: 2

Views: 857

Answers (1)

JohannesB
JohannesB

Reputation: 2308

Is this related to the usage of it in SSL/TLS? It seems some golang people do not want to support it for TLS: https://github.com/golang/go/issues/27484 but most TLS implementations offer mostly other ciphers suites.

However if it is not related to TLS maybe you may want to look at other peoples effort to implement it like:

See for some documentation on implementing this also:

You will also typically find more in-depth expertise around crypto on crypto.stackexchange.com, e.g.:

Upvotes: 1

Related Questions