UtilEncryptionAtbashEncrypt Method
Encrypts a string using Atbash substitution cipher.
Namespace: DevCase.Core.Security.Cryptography.EncryptionAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static string AtbashEncrypt(
string text
)
Public Shared Function AtbashEncrypt (
text As String
) As String
Dim text As String
Dim returnValue As String
returnValue = UtilEncryption.AtbashEncrypt(text)
public:
static String^ AtbashEncrypt(
String^ text
)
static member AtbashEncrypt :
text : string -> string
No code example is currently available or this language may not be supported.
- text String
-
The text to encrypt.
String
The encrypted string.
This is a code example.
No code example is currently available or this language may not be supported.
Dim encrypted As String = AtbashEncrypt("Hello World!")
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.