Does .NET support AES OFB encryption?
I tried using AesCryptoServiceProvider, but when I set the mode to CipherMode.OFB, I got an exception: the specified algorithm is incorrect
AesManaged does not allow feedback modes (based on MSDN documentation)
.Net 4.0 should
here's the link
http://msdn.microsoft.com/en-us/library/0ss79b2x.aspx
Here are the available encryption modes
http://msdn.microsoft.com/en-us/library/system.security.cryptography.ciphermode.aspx
The base class SymmetricAlgorithm supports only CipherModes CBC and CFB.
, AesCryptoServiceProvider. , Cipher.
* : [ .Net v3.5]
Source: https://habr.com/ru/post/1546725/More articles:How to override the basic user in a Strongloop loopback project? - javascriptDoes solr-solrj 4.9.0 work on jdk 1.6? - javaWork is not related to using JobChainingJobListener - c #Abstract data type vs Data type vs Data structure, in relation to object-oriented programming - typesAES OFB Encryption for RijndaelManaged - c #SetInterval exception exceptions - javascriptHow to execute llvm code - llvmCaching javascript variables - javascriptEWS - ServerBusyException? - c #Inheritable @IBInspectable var in Swift? - xcodeAll Articles