mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
13 lines
254 B
C++
13 lines
254 B
C++
|
#include "setup.h"
|
||
|
|
||
|
#include "hlib_sha256.h"
|
||
|
|
||
|
void backend_hash_hashlib_install_providers() {
|
||
|
HashLibSHA256::set_as_active_implementation();
|
||
|
}
|
||
|
|
||
|
void backend_hash_hashlib_uninstall_providers() {
|
||
|
HashLibSHA256::unset_as_active_implementation();
|
||
|
}
|
||
|
|