You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
byte[]dataToEncrypt=Encoding.UTF8.GetBytes("What is that? A New Router that I see?");// Initializer creates our AES key, AES Nonce, and RSA Key Pair for us.AESRSAHybridInitializerinitializer=newAESRSAHybridInitializer(256,4096);AESRSAHybridEncryptResultresult=this._hybridEncryptionWrapper.EncryptAESRSAHybrid(dataToEncrypt,initializer);byte[]plaintext=this._hybridEncryptionWrapper.DecryptAESRSAHybrid(initializer.RsaKeyPair.PrivateKey,result);