Constants: OW3

Parent: $root.$constants

kOW3cryptoActionDecryptDecrypt the data using the specified encryption scheme and parameters
kOW3cryptoActionEncryptEncrypt the data using the specified encryption scheme and parameters
kOW3cryptoCipherModeCBCCBC (Cipher Block Chaining)
kOW3cryptoCipherModeCTRCTR (Counter). Not supported for kOW3cryptoTypeDES
kOW3cryptoCipherModeECBEBC (Electronic Code Book)
kOW3cryptoPaddingNoneNo padding (use this for cipher modes other than CBC and EBC)
kOW3cryptoPaddingOneAndZerosOne and zeros padding (ISO/IEC 7816-4)
kOW3cryptoPaddingPKCS7PKCS7 padding
kOW3cryptoPaddingZerosPad with N zero bytes,where N is the number of padding bytes
kOW3cryptoPaddingZerosAndLenPad with N-1 zero bytes followed by a byte with value N,where N is the number of padding bytes (ANSI X.923)
kOW3cryptoTypeAESAES encryption. Key size must be 128, 192 or 256 bits
kOW3cryptoTypeBlowfishBlowfish encryption has been deprecated and removed. Please use other encryption types
kOW3cryptoTypeCamelliaCamellia encryption. Key size must be 128, 192 or 256 bits
kOW3cryptoTypeDESDES encryption. Key size must be 64 or 192 bits. Uses Triple DES if key size is 192 bits
kOW3ftpActionAppendFileIdentical to kOW3ftpActionPutFile except the action appends the data to an existing file on the server,or creates a new file containing supplied data if file does not exist on the server.Not supported for SFTP
kOW3ftpActionCreateDirectoryCreate directory cServerPath on the FTP server.vParam is not required
kOW3ftpActionDeleteDelete directory or file cServerPath from the FTP server.vParam is Boolean true if cServerPath is a directory,false if it is a file
kOW3ftpActionExecuteIf not SFTP and cServerPath not empty CWD cServerPath.Then execute FTP control commands in vParam.vParam is either character or single column list of commands.wResults.resultList has a row for each command response
kOW3ftpActionGetFileDownload file cServerPath from FTP server.Downloaded file data is either written to $responsepath (if not empty) or returned in the wResults row.vParam is not required
kOW3ftpActionGetFileMultiDownload multiple files from the FTP server.vParam is a 2 column list (col1: full local pathname,col2: full server pathname).cServerPath must be empty
kOW3ftpActionListDirectoryList the contents of directory cServerPath on the FTP server.vParam is Boolean true to list file names only,or false to get a detailed list.A single column list is returned to wResults.resultList
kOW3ftpActionMoveMove a file on the FTP server.cServerPath is the pathname of the file or directory to be moved.vParam is the new server path name
kOW3ftpActionPutFileUpload file data to file cServerPath on FTP server.vParam is file data (binary,character or row).Worker converts character to server character set.Row must have one column (path of file containing data to upload)
kOW3ftpActionPutFileMultiUpload multiple files to the FTP server.vParam is a 2 column list (col1: full local pathname,col2: full server pathname).cServerPath must be empty
kOW3ftpActionSetPermissionsSet the permissions of file or directory cServerPath on the FTP server.vParam is a character string specifying the new permissions of the file or directory
kOW3hashMD5MD5 hash
kOW3hashPBKDF2PBKDF2 password hash
kOW3hashRIPEMD_160RIPEMD 160 hash
kOW3hashSHA1SHA1 hash
kOW3hashSHA2_256SHA2 256 hash
kOW3hashSHA2_384SHA2 384 hash
kOW3hashSHA2_512SHA2 512 hash
kOW3hashSHA3_256SHA3 256 hash
kOW3hashSHA3_384SHA3 384 hash
kOW3hashSHA3_512SHA3 512 hash
kOW3httpAuthTypeAWSv4AWS Signature Version 4 authentication required
kOW3httpAuthTypeBasicBasic HTTP authentication required
kOW3httpAuthTypeDigestDigest HTTP authentication required
kOW3httpAuthTypeNoneNo HTTP authentication required
kOW3httpAuthTypeNTLMNTLM authentication required
kOW3httpMethodDeletePerform HTTP delete method
kOW3httpMethodGetPerform HTTP get method
kOW3httpMethodHeadPerform HTTP head method
kOW3httpMethodOptionsPerform HTTP options method
kOW3httpMethodPatchPerform HTTP patch method
kOW3httpMethodPostPerform HTTP post method
kOW3httpMethodPutPerform HTTP put method
kOW3httpMethodTracePerform HTTP trace method
kOW3httpMultiPartFormDataPass this value as the content parameter to $init,in order to send multipart/form-data content built with the $multipart... methods
kOW3imapActionAppendMessageSelects mailbox cMailboxName and appends a message to the mailbox.Either supply entire message as binary vParam1,or supply 2 column header list in vParam1 and binary raw content or MIME list in vParam2
kOW3imapActionExecuteIf cMailboxName is not empty select mailbox cMailboxName.Then execute IMAP commands in vParam1.vParam1 is binary or single column list of binary commands. wResults.resultList has a row for each command response
kOW3imapActionFetchMessageSelects mailbox cMailboxName and fetches the message with UID vParam1.vParam2 (optional, default false) is Boolean true to fetch message headers only
kOW3imapActionListMailboxesList mailboxes in reference name cMailboxName.vParam1 specifies the names to list.vParam2 (optional, default false) is Boolean true to list subscribed mailboxes only
kOW3imapActionListMessagesSelects mailbox cMailboxName and lists messages in it.vParam1 (optional) single column list of additional header names to retrieve.vParam2 (optional) IMAP search query selecting messages to list e.g.UNSEEN
kOW3imapActionSelectExecutes an IMAP SELECT for the cMailboxName and returns information such as number of emails in the mailbox selected.
kOW3imapActionSetMessageFlagsSelects mailbox cMailboxName and sets flags for message with UID vParam1.vParam2 is row of flags with values kFalse,kTrue or kUnknown (leave flag unchanged);row(answered,deleted,draft,flagged,seen)
kOW3logBasicBasic protocol information such as headers is logged
kOW3logDataApplication data sent or received is logged up to a maximum of 16k for each direction
kOW3logHTMLThe content of the generated log is HTML rather than plain text
kOW3logNoneNo protocol logging occurs
kOW3logSecureDataSecure connection data is logged
kOW3msgPriorityHighThe message has high priority
kOW3msgPriorityHighestThe message has the highest priority
kOW3msgPriorityLowThe message has low priority
kOW3msgPriorityLowestThe message has the lowest priority
kOW3msgPriorityNormalThe message has normal priority
kOW3OAUTH2authFlowCodeOAUTH2 authorization code flow
kOW3OAUTH2authFlowCodeWithPKCEOAUTH2 authorization code flow with PKCE
kOW3OAUTH2authFlowManualCodeOAUTH2 authorization code flow with a manually pasted authorization code (uses redirect URI urn:ietf:wg:oauth:2.0:oob)
kOW3OAUTH2authFlowManualCodeWithPKCEOAUTH2 authorization code flow with a manually pasted authorization code and PKCE (uses redirect URI urn:ietf:wg:oauth:2.0:oob)
kOW3OAUTH2grantAuthorizationCodeOAUTH2 authorization code grant type
kOW3OAUTH2grantClientCredentialsOAUTH2 client credentials grant type
kOW3OAUTH2grantPasswordOAUTH2 password grant type
kOW3pop3ActionDeleteMessageDelete the specified message from the maildrop
kOW3pop3ActionGetHeadersGet headers for a specified message.For a successful request,wResults has either a column rawData or a column headerList (depending on the value of $splitfetchedmessage)
kOW3pop3ActionGetMessageGet specified message.For a successful request,wResults has either a column rawData or columns headerList and mimeList (depending on the value of $splitfetchedmessage)
kOW3pop3ActionListList messages.For a successful request,wResults has a column named messageList which contains a 2 column list,with columns messageNumber and messageSize
kOW3pop3ActionQuitSend a QUIT command to the server to ensure that any messages marked for deletion are deleted
kOW3pop3ActionStatGet maildrop status.For a successful request,wResults has 2 columns returning the stat information,messageCount and maildropSize
kOW3sshAuthTypeAgentThe client connects to ssh-agent or pageant,which performs authentication on behalf of the client
kOW3sshAuthTypeHostHost authentication
kOW3sshAuthTypePasswordPassword authentication
kOW3sshAuthTypePublicKeyPublic key authentication
kOW3sshKHActionAcceptIfMismatchAccept the connection if the server is present in the known hosts file but the host key does not match
kOW3sshKHActionAcceptIfMissingAccept the connection if the server is not present in the known hosts file
kOW3sshKHActionRejectDo not allow the connection
kOW3sshKHActionUpdateFileUsed in conjunction with kOW3sshKHActionAcceptIfMissing and kOW3sshKHActionAcceptIfMismatch to write the accepted host and host key to the known hosts file