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.
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.: