Welcome
CeoneEncrypt.FileWriteFromString
CeoneEncrypt.FileReadToString
CeoneEncrypt.FileGetEncryptedString
CeoneEncrypt.RegistryWriteValue
CeoneEncrypt.RegistryReadValue
CeoneEncrypt.EncryptString
CeoneEncrypt.DecryptString
CeoneEncrypt.FileWriteFromString ( |
(string) Filename, (string) Key, (string) Text ) |
Encrypts a string then writes it to a file.
(string) The path to the file to write.
(string) The secret key used for encrypting and decrypting.
(string) The text to write as an encrypted file.
This action dose not return any value.
(string) CeoneEncrypt.FileReadToString ( |
(string) Filename, (string) Key ) |
Decrypts a file then reads it to a string.
(string) The path to the file to read.
(string) The secret key used for encrypting and decrypting.
This action returns a (string) value.
(string) CeoneEncrypt.FileGetEncryptedString ( |
(string) Filename ) |
Returns a raw encrypted string.
(string) The path to the file to read.
This action returns a (string) value.
CeoneEncrypt.RegistryWriteValue ( |
(number) MainKey, (string) SubKey, (string) Value, (string) Data, (number) Type = REG_SZ, (string) Encryption Key ) |
Write a value to the registry in encrypted blowfish.
(number) The main or "root" key containing the sub key.
(string) The sub key containing the value.
(string) The value whose data you want to set.
(string) The data you want to assign to the value.
(number) The type of data you want to assign.
(string) The key used for encrypting and decrypting.
This action dose not return any value.
(string) CeoneEncrypt.RegistryReadValue ( |
(number) MainKey, (string) SubKey, (string) Value, (string) Decryption Key = true ) |
Read a value in the registry to a decrypted string.
(number) The main or "root" key containing the sub key.
(string) The sub key containing the value.
(string) The value whose data you want.
(string) Key used for decrypting the encrypted value.
This action returns a (string) value.
(string) CeoneEncrypt.EncryptString ( |
(string) Filename, (string) Key ) |
Encrypts a string to Blowfish.
(string) The path to the file to write to.
(string) The key used for encryption and decryption.
This action returns a (string) value.
(string) CeoneEncrypt.DecryptString ( |
(string) Filename, (string) Key ) |
Decrypts an encrypted Blowfish string.
(string) The path to the file to read.
(string) The key used for encryption and decryption.
This action returns a (string) value.
Made with Action Plugin Compiler