File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
src/dynamodb_encryption_sdk/delegated_keys Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 8
8
/.coverage *
9
9
/build
10
10
/doc /generated /*
11
+ /doc /lib /generated /*
11
12
/runpy
12
13
__pycache__
13
14
build
Original file line number Diff line number Diff line change 32
32
lib/tools/exceptions
33
33
34
34
.. toctree ::
35
- :maxdepth: 2
35
+ :maxdepth: 1
36
36
:caption: Informational Only
37
37
38
38
lib/internal
Original file line number Diff line number Diff line change @@ -7,9 +7,8 @@ Internal Resources
7
7
and APIs described here remaining consistent. Directly reference at your own risk.
8
8
9
9
.. autosummary ::
10
+ :toctree: generated
10
11
11
- dynamodb_encryption_sdk.internal
12
- dynamodb_encryption_sdk.internal.dynamodb_types
13
12
dynamodb_encryption_sdk.internal.identifiers
14
13
dynamodb_encryption_sdk.internal.str_ops
15
14
dynamodb_encryption_sdk.internal.utils
Original file line number Diff line number Diff line change 10
10
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
11
# ANY KIND, either express or implied. See the License for the specific
12
12
# language governing permissions and limitations under the License.
13
- """Delegated key that JCE StandardName algorithm values to determine behavior."""
13
+ """Delegated key that uses JCE StandardName values to determine behavior."""
14
14
from __future__ import division
15
15
16
16
import logging
@@ -76,7 +76,7 @@ def _generate_rsa_key(key_length):
76
76
@attr .s (init = False )
77
77
class JceNameLocalDelegatedKey (DelegatedKey ):
78
78
# pylint: disable=too-many-instance-attributes
79
- """Delegated key that uses JCE StandardName algorithm values to determine behavior.
79
+ """Delegated key that uses JCE StandardName values to determine behavior.
80
80
81
81
Accepted algorithm names for this include:
82
82
You can’t perform that action at this time.
0 commit comments