Encr_Rotate13 |
Very simple coding of text. Shifts the character values by 13 to encrypt text stored in a FileMaker field. The field may be decrypted by using Rotate13 again.
Syntax
Encr_Rotate13 ( switches ; text )
Parameters
switches | reserved for future use, leave empty or set to "-Unused" |
text | the text to Rotate |
Returned Result
Data type returned
Text
Result
the text that was rotated.
Originated in
Troi Encryptor Plug-in 1.2
Compatibility
FileMaker Pro 16 to FileMaker Pro 2023
Considerations
Use this only as a simple way to make reading difficult.
Example
Set Field [ result ; Encr_Rotate13 ( "-Unused" ; "Hello World" ) ]
gives this result: “Uryyb Jbeyq”
Example 2
Set Field [ result ; Encr_Rotate13 ( "-Unused" ; "Uryyb Jbeyq" ) ]
gives this result: “Hello World”
Related topics
Troi Encryptor Plug-in online help (overview)