Skip to content

Commit f0d5898

Browse files
m
1 parent a87409a commit f0d5898

File tree

8 files changed

+69
-4
lines changed

8 files changed

+69
-4
lines changed

AwsEncryptionSDK/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ TestsFromDafny.cs
44
ImplementationFromDafny-cs.dtr
55
TestsFromDafny-cs.dtr
66

7+
*.pyc
8+
79
bin/
810
obj/
911

AwsEncryptionSDK/project.properties

Lines changed: 0 additions & 4 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Important: Do not use this code. This package is AWS-internal.
2+
3+
This is NOT the released version of the AWS Encryption SDK for Java.
4+
5+
You can access the AWS Encryption SDK for Java at:
6+
7+
* Github: https://github.com/aws/aws-encryption-sdk-java
8+
* Maven: https://mvnrepository.com/artifact/com.amazonaws/aws-encryption-sdk-java
9+
10+
This is an in-development rewrite of the AWS Encryption SDK for Java and should not be used until development is complete.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Python build artifacts
2+
__pycache__
3+
**/__pycache__
4+
*.pyc
5+
src/**.egg-info/
6+
build
7+
poetry.lock
8+
**/poetry.lock
9+
dist
10+
11+
# Dafny-generated Python
12+
**/internaldafny/generated/*.py
13+
14+
# Python test artifacts
15+
.tox
16+
.pytest_cache
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Important: Do not use this code. This package is AWS-internal.
2+
3+
This is NOT the released version of the AWS Encryption SDK for Python.
4+
5+
You can access the AWS Encryption SDK for Python at:
6+
7+
* Github: https://github.com/aws/aws-encryption-sdk-python
8+
* PyPI: https://pypi.org/project/aws-encryption-sdk/
9+
10+
This is an in-development rewrite of the AWS Encryption SDK for Python and should not be used until development is complete.

AwsEncryptionSDK/runtimes/python/pyproject.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
11
[tool.poetry]
2+
# Note: We should not release this library with this name.
3+
# We should release this library under the name `aws-encryption-sdk`.
4+
# But this repo's TestVectors test the released, native version of the ESDK,
5+
# which has this name.
6+
# The names conflict, and issues arise from this.
7+
# When we are ready to release the Dafny-Python ESDK, we should rename this,
8+
# but figure out if/how we can still test the native ESDK in this repo.
29
name = "aws-encryption-sdk-dafny"
310
version = "0.1.0"
411
description = ""
512
authors = ["AWS Crypto Tools <[email protected]>"]
13+
# Note: We should not release this library with this package name.
14+
# We should release this library with the package name `aws_encryption_sdk`.
15+
# But this repo's TestVectors test the released, native version of the ESDK,
16+
# which has this name.
17+
# The names conflict, and issues arise from this.
18+
# When we are ready to release the Dafny-Python ESDK, we should rename this,
19+
# but figure out if/how we can still test the native ESDK in this repo.
620
packages = [
721
{ include = "aws_encryption_sdk_dafny", from = "src" }
822
]

TestVectors/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ ImplementationFromDafny-cs.dtr
55
TestsFromDafny-cs.dtr
66
**/bin
77
**/obj
8+
*.pyc
89
runtimes/java/dafny
910
runtimes/**/encrypt-manifest.json
1011
runtimes/**/decrypt-manifest.json
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Python build artifacts
2+
__pycache__
3+
**/__pycache__
4+
*.pyc
5+
src/**.egg-info/
6+
build
7+
poetry.lock
8+
**/poetry.lock
9+
dist
10+
11+
# Dafny-generated Python
12+
**/internaldafny/generated/*.py
13+
14+
# Python test artifacts
15+
.tox
16+
.pytest_cache

0 commit comments

Comments
 (0)