Skip to content

Commit 5b95b0a

Browse files
committed
Update documentation
1 parent d62674b commit 5b95b0a

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

donna.h

+4
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ ed25519_sign_open(const byte *message, size_t messageLength, const byte publicKe
9797

9898
//****************************** Internal ******************************//
9999

100+
#ifndef CRYPTOPP_DOXYGEN_PROCESSING
101+
100102
// CRYPTOPP_WORD128_AVAILABLE mostly depends upon GCC support for
101103
// __SIZEOF_INT128__. If __SIZEOF_INT128__ is not available then Moon
102104
// provides routines for MSC and GCC. It should cover most platforms,
@@ -136,6 +138,8 @@ ed25519_sign_open(const byte *message, size_t messageLength, const byte publicKe
136138
extern int curve25519_mult_SSE2(byte sharedKey[32], const byte secretKey[32], const byte othersKey[32]);
137139
#endif
138140

141+
#endif // CRYPTOPP_DOXYGEN_PROCESSING
142+
139143
NAMESPACE_END // Donna
140144
NAMESPACE_END // CryptoPP
141145

donna_32.h

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#ifndef CRYPTOPP_DONNA_32_H
1212
#define CRYPTOPP_DONNA_32_H
13+
#ifndef CRYPTOPP_DOXYGEN_PROCESSING
1314

1415
#include "config.h"
1516

@@ -406,4 +407,5 @@ NAMESPACE_END // Arch32
406407
NAMESPACE_END // Donna
407408
NAMESPACE_END // CryptoPP
408409

410+
#endif // CRYPTOPP_DOXYGEN_PROCESSING
409411
#endif // CRYPTOPP_DONNA_32_H

donna_64.h

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#ifndef CRYPTOPP_DONNA_64_H
1212
#define CRYPTOPP_DONNA_64_H
13+
#ifndef CRYPTOPP_DOXYGEN_PROCESSING
1314

1415
#include "config.h"
1516

@@ -452,4 +453,5 @@ NAMESPACE_END // Arch64
452453
NAMESPACE_END // Donna
453454
NAMESPACE_END // CryptoPP
454455

456+
#endif // CRYPTOPP_DOXYGEN_PROCESSING
455457
#endif // CRYPTOPP_DONNA_64_H

donna_sse.h

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#ifndef CRYPTOPP_DONNA_SSE_H
1212
#define CRYPTOPP_DONNA_SSE_H
13+
#ifndef CRYPTOPP_DOXYGEN_PROCESSING
1314

1415
#include "config.h"
1516
#include <emmintrin.h>
@@ -81,4 +82,5 @@ NAMESPACE_END // ArchSSE
8182
NAMESPACE_END // Donna
8283
NAMESPACE_END // CryptoPP
8384

85+
#endif // CRYPTOPP_DOXYGEN_PROCESSING
8486
#endif // CRYPTOPP_DONNA_SSE_H

0 commit comments

Comments
 (0)