Generatesecretkey()

Generates a new secret key based on the algorithm

Usage

STRING = Generatesecretkey( algorithm, keysize )
Argument Summary
algorithm Key Algorithm to use valid values: 'des', 'desede', 'aes', 'blowfish'
keysize Keysize - defaults to 56 for DES, 168 for DESEDE, or 128 for BLOWFISH and AES [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Generatesecretkey(
   algorithm=?, 
   keysize=?
);

Supports passing parameters as a structure using ArgumentCollection:

Generatesecretkey( ArgumentCollection={
   algorithm : ?, 
   keysize : ?
} );