Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/System.Management.Automation/engine/Credential.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ public enum PSCredentialUIOptions
/// <summary>
/// Declare a delegate which returns the encryption key and initialization vector for symmetric encryption algorithm.
/// </summary>
/// <param name="context">The streaming context, which contains the searilization context.</param>
/// <param name="context">The streaming context, which contains the serialization context.</param>
/// <param name="key">Symmetric encryption key.</param>
/// <param name="iv">symmetric encryption initialization vector.</param>
/// <param name="iv">Symmetric encryption initialization vector.</param>
/// <returns></returns>
public delegate bool GetSymmetricEncryptionKey(StreamingContext context, out byte[] key, out byte[] iv);

Expand Down