renamed defaultFlags getter to getDefaultFlags
This commit is contained in:
parent
ef3557333a
commit
cb67024dea
@ -74,9 +74,9 @@ typedef struct
|
|||||||
//GETTERS
|
//GETTERS
|
||||||
char getEncryptionSeparator();
|
char getEncryptionSeparator();
|
||||||
unsigned long getKeyLength();
|
unsigned long getKeyLength();
|
||||||
inputFlags defaultFlags(); //THIS GENERATES inputFlags WITH DEFAULT VALUES
|
inputFlags getDefaultFlags(); //THIS GENERATES inputFlags WITH DEFAULT VALUES
|
||||||
inputFlags getFlags(); //RETURNS USED FLAGS
|
inputFlags getFlags(); //RETURNS USED FLAGS
|
||||||
outputFlags noOutput(boolean exitCode); //SAME AS defaultFlags() BUT FOR outputFlags
|
outputFlags noOutput(boolean exitCode); //SAME AS getDefaultFlags() BUT FOR outputFlags
|
||||||
encryptionOperation_type_cb getEncryptionOperation(); //RETURNS FUNCTION WHICH IS USED FOR ENCRYPTION & DECRYPTION
|
encryptionOperation_type_cb getEncryptionOperation(); //RETURNS FUNCTION WHICH IS USED FOR ENCRYPTION & DECRYPTION
|
||||||
|
|
||||||
//SETTERS
|
//SETTERS
|
||||||
|
@ -42,7 +42,7 @@ unsigned long getKeyLength()
|
|||||||
return keyLength;
|
return keyLength;
|
||||||
}
|
}
|
||||||
|
|
||||||
inputFlags defaultFlags()
|
inputFlags getDefaultFlags()
|
||||||
{
|
{
|
||||||
return DEFAULT_FLAGS;
|
return DEFAULT_FLAGS;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user