EncryptBinary

Decrypts a provided encoded encrypted string using the specified algorithm and key

Method Signature

EncryptBinary(object=[any], key=[string], algorithm=[string], encoding=[string], IVorSalt=[any], iterations=[integer], precise=[boolean])

Arguments

ArgumentTypeRequiredDescriptionDefault

object

any

true

key

string

true

The string representation of the secret key to use for encryption ( see generateSecretKey() )

algorithm

string

false

The algorithm to use for encryption. Default is AES

encoding

string

false

The encoding type to use for encoding the encrypted data. Default is Base64

UU

IVorSalt

any

false

The initialization vector or salt to use for encryption.

iterations

integer

false

The number of iterations to use for encryption. Default is 1000

1000

precise

boolean

false

If set to true, the string and key will be validated before encryption to ensure conformity to the algorithm. Default is false

false

Examples

Last updated

Logo

Copyright & Register Trademark by Ortus Solutions, Corp & Ortus Software, LLC