Talking about javax.crypto.Cipher
javax.crypto.Cipher
I was trying to encrypt data using Cipher.getInstance(\"RSA/None/NoPadding\", \"BC\") but I got the excep
Cipher.getInstance(\"RSA/None/NoPadding\", \"BC\")
Scroll down a bit and you'll see it. It's not an cypher algortihm (like RSA) or a cypher mode like CBC, but a description of the way the certificate is encoded as bytes (i.e., a data structure syntax). You can find the spec for it here.