mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-24 03:53:29 +01:00
Correct typos introduced inadvertently
This commit is contained in:
parent
bacd720279
commit
f701dc1c29
@ -67,7 +67,7 @@ endif
|
|||||||
|
|
||||||
ifdef PKCS11_INC
|
ifdef PKCS11_INC
|
||||||
C_CXX_FLAGS += -I$(PKCS11_INC)
|
C_CXX_FLAGS += -I$(PKCS11_INC)
|
||||||
+else
|
else
|
||||||
C_CXX_FLAGS += -I$(CURDIR)/PKCS11
|
C_CXX_FLAGS += -I$(CURDIR)/PKCS11
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ namespace TrueCrypt
|
|||||||
|
|
||||||
void Pkcs5Kdf::DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, BOOL bNotTest) const
|
void Pkcs5Kdf::DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, BOOL bNotTest) const
|
||||||
{
|
{
|
||||||
DeriveKey (key, password, salt, GetIterationCount(), bNoTest);
|
DeriveKey (key, password, salt, GetIterationCount(), bNotTest);
|
||||||
}
|
}
|
||||||
|
|
||||||
shared_ptr <Pkcs5Kdf> Pkcs5Kdf::GetAlgorithm (const wstring &name)
|
shared_ptr <Pkcs5Kdf> Pkcs5Kdf::GetAlgorithm (const wstring &name)
|
||||||
@ -67,13 +67,13 @@ namespace TrueCrypt
|
|||||||
void Pkcs5HmacRipemd160::DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount, BOOL bNotTest) const
|
void Pkcs5HmacRipemd160::DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount, BOOL bNotTest) const
|
||||||
{
|
{
|
||||||
ValidateParameters (key, password, salt, iterationCount);
|
ValidateParameters (key, password, salt, iterationCount);
|
||||||
derive_key_ripemd160 (bNoTest, (char *) password.DataPtr(), (int) password.Size(), (char *) salt.Get(), (int) salt.Size(), iterationCount, (char *) key.Get(), (int) key.Size());
|
derive_key_ripemd160 (bNotTest, (char *) password.DataPtr(), (int) password.Size(), (char *) salt.Get(), (int) salt.Size(), iterationCount, (char *) key.Get(), (int) key.Size());
|
||||||
}
|
}
|
||||||
|
|
||||||
void Pkcs5HmacRipemd160_1000::DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount, BOOL bNotTest) const
|
void Pkcs5HmacRipemd160_1000::DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount, BOOL bNotTest) const
|
||||||
{
|
{
|
||||||
ValidateParameters (key, password, salt, iterationCount);
|
ValidateParameters (key, password, salt, iterationCount);
|
||||||
derive_key_ripemd160 (bNoTest, (char *) password.DataPtr(), (int) password.Size(), (char *) salt.Get(), (int) salt.Size(), iterationCount, (char *) key.Get(), (int) key.Size());
|
derive_key_ripemd160 (bNotTest, (char *) password.DataPtr(), (int) password.Size(), (char *) salt.Get(), (int) salt.Size(), iterationCount, (char *) key.Get(), (int) key.Size());
|
||||||
}
|
}
|
||||||
|
|
||||||
void Pkcs5HmacSha1::DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount, BOOL bNotTest) const
|
void Pkcs5HmacSha1::DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount, BOOL bNotTest) const
|
||||||
|
Loading…
Reference in New Issue
Block a user