CeoneEncrypt Help File


Table of Contents

CeoneEncrypt.FileWriteFromString
CeoneEncrypt.FileReadToString
CeoneEncrypt.FileGetEncryptedString
CeoneEncrypt.RegistryWriteValue
CeoneEncrypt.RegistryReadValue
CeoneEncrypt.EncryptString
CeoneEncrypt.DecryptString

CeoneEncrypt.FileWriteFromString


CeoneEncrypt.FileWriteFromString ( 

(string) Filename,

(string) Key,

(string) Text )

Description

Encrypts a string then writes it to a file.

Parameters

Filename

(string) The path to the file to write.

Key

(string) The secret key used for encrypting and decrypting.

Text

(string) The text to write as an encrypted file.


Return

This action dose not return any value.



CeoneEncrypt.FileReadToString


(string) CeoneEncrypt.FileReadToString ( 

(string) Filename,

(string) Key )

Description

Decrypts a file then reads it to a string.

Parameters

Filename

(string) The path to the file to read.

Key

(string) The secret key used for encrypting and decrypting.


Return

This action returns a (string) value.



CeoneEncrypt.FileGetEncryptedString


(string) CeoneEncrypt.FileGetEncryptedString ( 

(string) Filename )

Description

Returns a raw encrypted string.

Parameters

Filename

(string) The path to the file to read.


Return

This action returns a (string) value.



CeoneEncrypt.RegistryWriteValue


CeoneEncrypt.RegistryWriteValue ( 

(number) MainKey,

(string) SubKey,

(string) Value,

(string) Data,

(number) Type = REG_SZ,

(string) Encryption Key )

Description

Write a value to the registry in encrypted blowfish.

Parameters

MainKey

(number) The main or "root" key containing the sub key.

SubKey

(string) The sub key containing the value.

Value

(string) The value whose data you want to set.

Data

(string) The data you want to assign to the value.

Type

(number) The type of data you want to assign.

Encryption Key

(string) The key used for encrypting and decrypting.


Return

This action dose not return any value.



CeoneEncrypt.RegistryReadValue


(string) CeoneEncrypt.RegistryReadValue ( 

(number) MainKey,

(string) SubKey,

(string) Value,

(string) Decryption Key = true )

Description

Read a value in the registry to a decrypted string.

Parameters

MainKey

(number) The main or "root" key containing the sub key.

SubKey

(string) The sub key containing the value.

Value

(string) The value whose data you want.

Decryption Key

(string) Key used for decrypting the encrypted value.


Return

This action returns a (string) value.



CeoneEncrypt.EncryptString


(string) CeoneEncrypt.EncryptString ( 

(string) Filename,

(string) Key )

Description

Encrypts a string to Blowfish.

Parameters

Filename

(string) The path to the file to write to.

Key

(string) The key used for encryption and decryption.


Return

This action returns a (string) value.



CeoneEncrypt.DecryptString


(string) CeoneEncrypt.DecryptString ( 

(string) Filename,

(string) Key )

Description

Decrypts an encrypted Blowfish string.

Parameters

Filename

(string) The path to the file to read.

Key

(string) The key used for encryption and decryption.


Return

This action returns a (string) value.



Made with Action Plugin Compiler