pip install hanifx
gem install hanifx
14700
13808
#python
from hanifx_secure_encode import encode_text, encode_file
# Encode text
result = encode_text("Sensitive Information")
print(result)
# Encode file
encoded_file = encode_file("example.py")
print(f"Encoded file created: {encoded_file}")
#ruby
require 'hanifx'
# Encode text
encoded = Hanifx.encode_text("Hello World")
puts encoded
# Encode file manually in interactive script
# See interactive_hanifx_pro.rb for full workflow