diff options
| author | Donald Stufft <donald@stufft.io> | 2013-08-07 12:50:44 -0700 |
|---|---|---|
| committer | Donald Stufft <donald@stufft.io> | 2013-08-07 12:50:44 -0700 |
| commit | 39ffd9095a2735665e2bf1c62799849c7ac5a1bc (patch) | |
| tree | ef296b8630199b8e5d25d624597c146b4e233768 /cryptography | |
| parent | 096b000c244d592def9bcd826528de7284d4e851 (diff) | |
| parent | a233dcc6f32eaaef10750cf644c68363d08395f1 (diff) | |
| download | cryptography-39ffd9095a2735665e2bf1c62799849c7ac5a1bc.tar.gz cryptography-39ffd9095a2735665e2bf1c62799849c7ac5a1bc.tar.bz2 cryptography-39ffd9095a2735665e2bf1c62799849c7ac5a1bc.zip | |
Merge pull request #1 from alex/initial-repo
Basic Project Files and Skeleton
Diffstat (limited to 'cryptography')
| -rw-r--r-- | cryptography/__init__.py | 0 | ||||
| -rw-r--r-- | cryptography/c/__init__.py | 17 | ||||
| -rw-r--r-- | cryptography/c/api.py | 21 |
3 files changed, 38 insertions, 0 deletions
diff --git a/cryptography/__init__.py b/cryptography/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/cryptography/__init__.py diff --git a/cryptography/c/__init__.py b/cryptography/c/__init__.py new file mode 100644 index 00000000..09bf4977 --- /dev/null +++ b/cryptography/c/__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.c.api import api + + +__all__ = ["api"] diff --git a/cryptography/c/api.py b/cryptography/c/api.py new file mode 100644 index 00000000..ea8827f1 --- /dev/null +++ b/cryptography/c/api.py @@ -0,0 +1,21 @@ +# 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 + + +class API(object): + """OpenSSL API wrapper.""" + + +api = API() |
