Check if at least one encryption mode is selected

This commit is contained in:
Torfinn Berset 2019-01-31 14:25:36 +01:00
parent 7468e2ec12
commit 8f778c3d88
1 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,5 @@
from conans import ConanFile, CMake
from conans.errors import ConanException
class TinyAesCConan(ConanFile):
@ -40,11 +41,15 @@ class TinyAesCConan(ConanFile):
"AES128": True,
"AES192": False,
"AES256": False,
"CBC": False,
"ECB": False,
"CTR": False
"CBC": True,
"ECB": True,
"CTR": True
}
def configure(self):
if not self.options.CBC and not self.options.ECB and not self.options.CTR:
raise ConanException("Need to at least specify one of CBC, ECB or CTR modes")
def build(self):
cmake = CMake(self)