aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/backends
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-29 22:15:51 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-29 22:15:51 -0600
commita85baf166b9d9aec6e662a0657d2d21bcfd3df28 (patch)
tree26066713af5023513f7d8e49ed885d730b44515e /tests/hazmat/backends
parentec0f7393695c7cfd715f867906598ab77bda19bb (diff)
downloadcryptography-a85baf166b9d9aec6e662a0657d2d21bcfd3df28.tar.gz
cryptography-a85baf166b9d9aec6e662a0657d2d21bcfd3df28.tar.bz2
cryptography-a85baf166b9d9aec6e662a0657d2d21bcfd3df28.zip
add windows support to random engine tests
Diffstat (limited to 'tests/hazmat/backends')
-rw-r--r--tests/hazmat/backends/test_openssl.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py
index e527ed19..ea716204 100644
--- a/tests/hazmat/backends/test_openssl.py
+++ b/tests/hazmat/backends/test_openssl.py
@@ -11,6 +11,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+import sys
+
import cffi
import pytest
@@ -25,6 +27,11 @@ from cryptography.hazmat.primitives.ciphers.algorithms import AES
from cryptography.hazmat.primitives.ciphers.modes import CBC
+if sys.platform != "win32":
+ libraries = ["crypto", "ssl"]
+else: # pragma: no cover
+ libraries = ["libeay32", "ssleay32", "advapi32"]
+
ffi = cffi.FFI()
ffi.cdef("""
@@ -77,7 +84,7 @@ dummy_engine = ffi.verify(
return 1;
}
""",
- libraries=["crypto", "ssl"],
+ libraries=libraries
)