diff --git a/src/nacl/_lib/randombytes.h b/src/nacl/_lib/randombytes.h new file mode 100644 index 0000000000000000000000000000000000000000..6952fbbe803173407a7633d0958ef3bae365b262 --- /dev/null +++ b/src/nacl/_lib/randombytes.h @@ -0,0 +1,16 @@ +/* Copyright 2013 Donald Stufft and individual contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +void randombytes(unsigned char * const buf, const unsigned long long buf_len); diff --git a/src/nacl/c/__init__.py b/src/nacl/c/__init__.py index e9ef7f97121c25b062b83db3b13489d1df465a09..e062935a36325c1f93632756d7306b84b35d8131 100644 --- a/src/nacl/c/__init__.py +++ b/src/nacl/c/__init__.py @@ -23,6 +23,7 @@ from nacl.c.crypto_scalarmult import ( crypto_scalarmult_BYTES, crypto_scalarmult_SCALARBYTES, crypto_scalarmult_base, ) +from nacl.c.randombytes import randombytes __all__ = [ @@ -42,4 +43,6 @@ __all__ = [ "crypto_scalarmult_BYTES", "crypto_scalarmult_SCALARBYTES", "crypto_scalarmult_base", + + "randombytes", ] diff --git a/src/nacl/c/randombytes.py b/src/nacl/c/randombytes.py new file mode 100644 index 0000000000000000000000000000000000000000..cee7a5e3b4194a65898b28207ddad24da354e6fb --- /dev/null +++ b/src/nacl/c/randombytes.py @@ -0,0 +1,29 @@ +# Copyright 2013 Donald Stufft and individual contributors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +from __future__ import absolute_import, division, print_function + +from nacl import _lib as lib + + +def randombytes(size): + """ + Returns ``size`` number of random bytes from a cryptographically secure + random source. + + :param size: int + :rtype: bytes + """ + buf = lib.ffi.new("unsigned char[]", size) + lib.randombytes(buf, size) + return lib.ffi.buffer(buf, size)[:] diff --git a/src/nacl/utils.py b/src/nacl/utils.py index 963b7d6cc46c1469f5bb5a9e5ab28cd7322c9f8c..61b901cb0c47df3d1a703324cb2f3acdabaad0d0 100644 --- a/src/nacl/utils.py +++ b/src/nacl/utils.py @@ -16,7 +16,7 @@ from __future__ import division import six -from .c import _lib as nacl +import nacl.c class EncryptedMessage(six.binary_type): @@ -57,6 +57,4 @@ class StringFixer(object): def random(size=32): - data = nacl.ffi.new("unsigned char[]", size) - nacl.lib.randombytes(data, size) - return nacl.ffi.buffer(data, size)[:] + return nacl.c.randombytes(size)