UtilEncryptionPolymorphicStairsDecrypt(String, String, Encoding, UInt32) Method

Decrypts a string using Polymorphic Stairs algorithm.

Definition

Namespace: DevCase.Core.Security.Cryptography.Encryption
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static string PolymorphicStairsDecrypt(
	string str,
	string key,
	Encoding enc = null,
	uint extraRounds = 0
)

Parameters

str  String
The string to decrypt.
key  String
The decryption key.
enc  Encoding  (Optional)
The text Encoding.
extraRounds  UInt32  (Optional)
A value that determines how many addtional times you want to decrypt the string.

For exemple, if you want to decrypt it two times, set extraRounds to 1 when calling this function.

Return Value

String
The decrypted string.

Example

This is a code example.
C#
No code example is currently available or this language may not be supported.

See Also