Skip to content
Snippets Groups Projects
Commit 6f95fa8d authored by Donald Stufft's avatar Donald Stufft
Browse files

Ensure there is no implicit compilation again

parent 3e16e4ef
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,7 @@ import six ...@@ -23,6 +23,7 @@ import six
from nacl import _cffi_fix from nacl import _cffi_fix
from cffi import FFI from cffi import FFI
from cffi.verifier import Verifier
__all__ = ["ffi"] __all__ = ["ffi"]
...@@ -43,9 +44,8 @@ for header in HEADERS: ...@@ -43,9 +44,8 @@ for header in HEADERS:
ffi.cdef(hfile.read()) ffi.cdef(hfile.read())
# Compile our module
# TODO: Can we use the ABI of libsodium for this instead? # TODO: Can we use the ABI of libsodium for this instead?
lib = ffi.verify( ffi.verifier = Verifier(ffi,
"#include <sodium.h>", "#include <sodium.h>",
# We need to link to the sodium library # We need to link to the sodium library
...@@ -56,11 +56,29 @@ lib = ffi.verify( ...@@ -56,11 +56,29 @@ lib = ffi.verify(
) )
# Put all of the exposed functions onto the module class Library(object):
g = globals()
for name, function in six.iteritems(lib.__dict__):
# Add this function to the __all__ namespace
__all__.append(name)
# Add this function to the globals def __init__(self, ffi):
g[name] = function self.ffi = ffi
self._initalized = False
# This prevents the compile_module() from being called, the module
# should have been compiled by setup.py
def _compile_module(*args, **kwargs):
raise RuntimeError("Cannot compile module during runtime")
self.ffi.verifier.compile_module = _compile_module
def __getattr__(self, name):
if not self._initalized:
self._lib = self.ffi.verifier.load_library()
# redirect attribute access to the underlying lib
attr = getattr(self._lib, name)
# Go ahead and assign the returned value to this class so we don't
# need to do this lookup again
setattr(self, name, attr)
return attr
lib = Library(ffi)
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
# limitations under the License. # limitations under the License.
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
from nacl import _lib as lib from nacl._lib import lib
from nacl.exceptions import CryptoError from nacl.exceptions import CryptoError
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
# limitations under the License. # limitations under the License.
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
from nacl import _lib as lib from nacl._lib import lib
from nacl.exceptions import CryptoError from nacl.exceptions import CryptoError
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
# limitations under the License. # limitations under the License.
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
from nacl import _lib as lib from nacl._lib import lib
from nacl.exceptions import CryptoError from nacl.exceptions import CryptoError
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
# limitations under the License. # limitations under the License.
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
from nacl import _lib as lib from nacl._lib import lib
from nacl.exceptions import CryptoError from nacl.exceptions import CryptoError
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
# limitations under the License. # limitations under the License.
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
from nacl import _lib as lib from nacl._lib import lib
from nacl.exceptions import BadSignatureError, CryptoError from nacl.exceptions import BadSignatureError, CryptoError
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
# limitations under the License. # limitations under the License.
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
from nacl import _lib as lib from nacl._lib import lib
def randombytes(size): def randombytes(size):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment