Moved comment to the right place, use integer enums
diff --git a/cryptography/primitives/block/base.py b/cryptography/primitives/block/base.py
index f4a04b3..b4137fd 100644
--- a/cryptography/primitives/block/base.py
+++ b/cryptography/primitives/block/base.py
@@ -13,15 +13,15 @@
 
 from __future__ import absolute_import, division, print_function
 
-# TODO: which binding is used should be an option somewhere
 from enum import Enum
 
+# TODO: which binding is used should be an option somewhere
 from cryptography.bindings.openssl import api
 
 
 class _Operation(Enum):
-    encrypt = "encrypt"
-    decrypt = "decrypt"
+    encrypt = 0
+    decrypt = 1
 
 
 class BlockCipher(object):