• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef SRC_CRYPTO_CRYPTO_TIMING_H_
2 #define SRC_CRYPTO_CRYPTO_TIMING_H_
3 
4 #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
5 
6 #include "env.h"
7 #include "v8.h"
8 
9 namespace node {
10 namespace crypto {
11 namespace Timing {
12 void Initialize(Environment* env, v8::Local<v8::Object> target);
13 void RegisterExternalReferences(ExternalReferenceRegistry* registry);
14 }  // namespace Timing
15 }  // namespace crypto
16 }  // namespace node
17 
18 #endif  // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
19 
20 #endif  // SRC_CRYPTO_CRYPTO_TIMING_H_
21