diff --git a/src/core/hw/rsa/rsa.h b/src/core/hw/rsa/rsa.h index 6385ed783..51288f41f 100644 --- a/src/core/hw/rsa/rsa.h +++ b/src/core/hw/rsa/rsa.h @@ -16,7 +16,7 @@ public: : init(true), exponent(std::move(exponent)), modulus(std::move(modulus)) {} std::vector GetSignature(const std::vector& message); - operator bool() const { + explicit operator bool() const { // TODO(B3N30): Maybe check if exponent and modulus are vailid return init; }