rcpp_framework/crypto_backends/hash_hashlib/detect.py

28 lines
255 B
Python
Raw Normal View History

import os
import platform
import sys
def is_active():
return True
def get_name():
return "backend_hash_hashlib"
def can_build():
return True
def get_opts():
return []
def get_flags():
return []
def configure(env):
pass