diff options
author | Ryan Ofsky <ryan@ofsky.org> | 2024-05-07 08:52:55 -0400 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2024-05-09 15:55:55 +0200 |
commit | 538fedde1d9c96a2bbe06cacc0cd6903135fbc83 (patch) | |
tree | 40cf1ef30b88ee9a093eabf81442042bad78fcaf /src/key.h | |
parent | 6f1d9064381d834b0f8daa9011f18ba40834d85a (diff) |
common: Add ECC_Context RAII wrapper for ECC_Start/ECC_Stop
Diffstat (limited to 'src/key.h')
-rw-r--r-- | src/key.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -245,4 +245,18 @@ void ECC_Stop(); /** Check that required EC support is available at runtime. */ bool ECC_InitSanityCheck(); +/** + * RAII class initializing and deinitializing global state for elliptic curve support. + * Only one instance may be initialized at a time. + * + * In the future global ECC state could be removed, and this class could contain + * state and be passed as an argument to ECC key functions. + */ +class ECC_Context +{ +public: + ECC_Context(); + ~ECC_Context(); +}; + #endif // BITCOIN_KEY_H |