diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-09 22:51:34 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-10 00:56:48 -0600 |
commit | a124429fb01ebde3f82cc338e20579d614b12f16 (patch) | |
tree | 8f46832242deee0dfb19a9cbb20f5a4ebb996a2d /cryptography/hazmat/backends/commoncrypto/__init__.py | |
parent | 726786967adcf90417b894ab25e10e16650cd3b6 (diff) | |
download | cryptography-a124429fb01ebde3f82cc338e20579d614b12f16.tar.gz cryptography-a124429fb01ebde3f82cc338e20579d614b12f16.tar.bz2 cryptography-a124429fb01ebde3f82cc338e20579d614b12f16.zip |
commoncrypto initial backend
Diffstat (limited to 'cryptography/hazmat/backends/commoncrypto/__init__.py')
-rw-r--r-- | cryptography/hazmat/backends/commoncrypto/__init__.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cryptography/hazmat/backends/commoncrypto/__init__.py b/cryptography/hazmat/backends/commoncrypto/__init__.py new file mode 100644 index 00000000..64a1c01c --- /dev/null +++ b/cryptography/hazmat/backends/commoncrypto/__init__.py @@ -0,0 +1,17 @@ +# 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 cryptography.hazmat.backends.commoncrypto.backend import backend + + +__all__ = ["backend"] |