CkPython
CkPython
Example: Crypt2.EncryptSb method
Demonstrates how to call the EncryptSb method.Chilkat CkPython Downloads
import sys
import chilkat
success = False
crypt = chilkat.CkCrypt2()
bdEncrypted = chilkat.CkBinData()
sbPlainText = chilkat.CkStringBuilder()
sbPlainText.Append("Text to be encrypted")
# ...
# Set the secret key ...
# Set properties such as CryptAlgorithm, CipherMode, PaddingScheme, KeyLength
# Set the IV if needed ...
# ...
crypt.put_Charset("utf-8")
success = crypt.EncryptSb(sbPlainText,bdEncrypted)
if (success == False):
print(crypt.lastErrorText())
sys.exit()