IPWorks Encrypt 2020 C++ Edition

Questions / Feedback?

Algorithm Property

The symmetric algorithm.

Syntax

ANSI (Cross Platform)
int GetAlgorithm();
int SetAlgorithm(int iAlgorithm); Unicode (Windows) INT GetAlgorithm();
INT SetAlgorithm(INT iAlgorithm);

Possible Values

EZ_AES(0), 
EZ_BLOWFISH(1),
EZ_CAST(2),
EZ_DES(3),
EZ_IDEA(4),
EZ_RC2(5),
EZ_RC4(6),
EZ_TEA(7),
EZ_TRIPLE_DES(8),
EZ_TWOFISH(9),
EZ_RIJNDAEL(10),
EZ_CHA_CHA(11),
EZ_XSALSA_20(12)
@property (nonatomic,readwrite,assign,getter=algorithm,setter=setAlgorithm:) int algorithm;
- (int)algorithm;
- (void)setAlgorithm:(int)newAlgorithm;

Possible Values

EZ_AES(0), 
EZ_BLOWFISH(1),
EZ_CAST(2),
EZ_DES(3),
EZ_IDEA(4),
EZ_RC2(5),
EZ_RC4(6),
EZ_TEA(7),
EZ_TRIPLE_DES(8),
EZ_TWOFISH(9),
EZ_RIJNDAEL(10),
EZ_CHA_CHA(11),
EZ_XSALSA_20(12)
#define PID_EZCRYPT_ALGORITHM 1

IPWORKSENCRYPT_EXTERNAL void* IPWORKSENCRYPT_CALL IPWorksEncrypt_EzCrypt_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
IPWORKSENCRYPT_EXTERNAL int IPWORKSENCRYPT_CALL IPWorksEncrypt_EzCrypt_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

0

Remarks

This property specifies the symmetric algorithm to use. Possible values are:

  • 0 (AES - default)
  • 1 (Blowfish)
  • 2 (CAST)
  • 3 (DES)
  • 4 (IDEA)
  • 5 (RC2)
  • 6 (RC4)
  • 7 (TEA)
  • 8 (TripleDES)
  • 9 (Twofish)
  • 10 (Rijndael)
  • 11 (ChaCha)
  • 12 (XSalsa20)

Data Type

Integer

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Encrypt 2020 C++ Edition - Version 20.0 [Build 8155]