Sample code for 30+ languages & platforms
Ruby

Obfuscate String

Demonstrates how to obfuscate and unobfuscate a string.

Chilkat Ruby Downloads

Ruby
require 'chilkat'

success = false

sb = Chilkat::CkStringBuilder.new()

s = "Hello World!"

sb.Append(s)
print sb.getAsString() + "\n";

# Output is "Hello World!";

# Obfuscate the string.
# This is NOT encryption.  It's just a simple obfuscation.
sb.Obfuscate()
print sb.getAsString() + "\n";

# Output is 2GsgGhbSQVyG8Vb9

# -------------------------
# Unobfuscate.
sb2 = Chilkat::CkStringBuilder.new()
s2 = "2GsgGhbSQVyG8Vb9"
sb2.Append(s2)
sb2.Unobfuscate()

print sb2.getAsString() + "\n";

# Output is "Hello World!";