Add header guard for serpentp.h
parent
342cdb9589
commit
54d48ac1f4
|
|
@ -54,4 +54,4 @@ typedef Serpent::Decryption SerpentDecryption;
|
||||||
|
|
||||||
NAMESPACE_END
|
NAMESPACE_END
|
||||||
|
|
||||||
#endif
|
#endif // CRYPTOPP_SERPENT_H
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,8 @@
|
||||||
// private header for Serpent and Sosemanuk
|
// private header for Serpent and Sosemanuk
|
||||||
|
|
||||||
|
#ifndef CRYPTOPP_SERPENTP_H
|
||||||
|
#define CRYPTOPP_SERPENTP_H
|
||||||
|
|
||||||
NAMESPACE_BEGIN(CryptoPP)
|
NAMESPACE_BEGIN(CryptoPP)
|
||||||
|
|
||||||
// linear transformation
|
// linear transformation
|
||||||
|
|
@ -432,3 +435,5 @@ NAMESPACE_BEGIN(CryptoPP)
|
||||||
void Serpent_KeySchedule(word32 *k, unsigned int rounds, const byte *userKey, size_t keylen);
|
void Serpent_KeySchedule(word32 *k, unsigned int rounds, const byte *userKey, size_t keylen);
|
||||||
|
|
||||||
NAMESPACE_END
|
NAMESPACE_END
|
||||||
|
|
||||||
|
#endif // CRYPTOPP_SERPENTP_H
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue