I have a class that encrypts, decrypts, hashes and signs. In the future it may implement something else too, but my question is that what would that class be called. Currently I call it Encrypter, but it really does things that’s not about encrypting. I have thought about the term Crypto, but I am not sure if that’s what people usually use/think.
Share
I would call it OpenSSL. Hah, no but seriously now
Cryptois a good name for it i would also throw in a method to make a Cryptographic Nonce and a String2Key function, especially if you are using “passwords” for symmetric encryption. I am glad you didn’t call hashing a form of encryption, because they are very different.