System.Security.Cryptography.RijndaelManaged.GenerateKey C# (CSharp) 메소드

GenerateKey() 공개 메소드

public GenerateKey ( ) : void
리턴 void
        public override void GenerateKey() => _impl.GenerateKey();

Usage Example

예제 #1
1
파일: AES.cs 프로젝트: nicoriff/NinoJS
 /// -------------- Two Utility Methods (not used but may be useful) -----------
 /// Generates an encryption key.
 public static byte[] GenerateEncryptionKey()
 {
     //Generate a Key.
     RijndaelManaged rm = new RijndaelManaged();
     rm.GenerateKey();
     return rm.Key;
 }
All Usage Examples Of System.Security.Cryptography.RijndaelManaged::GenerateKey