File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #ifndef BITCOIN_HMAC_SHA256_H
6
- #define BITCOIN_HMAC_SHA256_H
5
+ #ifndef BITCOIN_CRYPTO_HMAC_SHA256_H
6
+ #define BITCOIN_CRYPTO_HMAC_SHA256_H
7
7
8
8
#include " crypto/sha256.h"
9
9
@@ -29,4 +29,4 @@ class CHMAC_SHA256
29
29
void Finalize (unsigned char hash[OUTPUT_SIZE]);
30
30
};
31
31
32
- #endif // BITCOIN_SHA256_H
32
+ #endif // BITCOIN_CRYPTO_HMAC_SHA256_H
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #ifndef BITCOIN_HMAC_SHA512_H
6
- #define BITCOIN_HMAC_SHA512_H
5
+ #ifndef BITCOIN_CRYPTO_HMAC_SHA512_H
6
+ #define BITCOIN_CRYPTO_HMAC_SHA512_H
7
7
8
8
#include " crypto/sha512.h"
9
9
@@ -29,4 +29,4 @@ class CHMAC_SHA512
29
29
void Finalize (unsigned char hash[OUTPUT_SIZE]);
30
30
};
31
31
32
- #endif // BITCOIN_HMAC_SHA512_H
32
+ #endif // BITCOIN_CRYPTO_HMAC_SHA512_H
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #ifndef BITCOIN_SHA256_H
6
- #define BITCOIN_SHA256_H
5
+ #ifndef BITCOIN_CRYPTO_SHA256_H
6
+ #define BITCOIN_CRYPTO_SHA256_H
7
7
8
8
#include < stdint.h>
9
9
#include < stdlib.h>
@@ -25,4 +25,4 @@ class CSHA256
25
25
CSHA256& Reset ();
26
26
};
27
27
28
- #endif // BITCOIN_SHA256_H
28
+ #endif // BITCOIN_CRYPTO_SHA256_H
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #ifndef BITCOIN_SHA512_H
6
- #define BITCOIN_SHA512_H
5
+ #ifndef BITCOIN_CRYPTO_SHA512_H
6
+ #define BITCOIN_CRYPTO_SHA512_H
7
7
8
8
#include < stdint.h>
9
9
#include < stdlib.h>
@@ -25,4 +25,4 @@ class CSHA512
25
25
CSHA512& Reset ();
26
26
};
27
27
28
- #endif // BITCOIN_SHA512_H
28
+ #endif // BITCOIN_CRYPTO_SHA512_H
You can’t perform that action at this time.
0 commit comments