src/dynamodb_encryption_sdk/internal/crypto/jce_bridge/primitives.py [115:124]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    java_name = attr.ib(validator=attr.validators.instance_of(six.string_types))
    padding = attr.ib(validator=callable_validator)

    def __init__(self, java_name, padding):  # type: (Text, Callable) -> None  # noqa=D107
        # Workaround pending resolution of attrs/mypy interaction.
        # https://github.com/python/mypy/issues/2088
        # https://github.com/python-attrs/attrs/issues/215
        self.java_name = java_name
        self.padding = padding
        attr.validate(self)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/dynamodb_encryption_sdk/internal/crypto/jce_bridge/primitives.py [141:150]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    java_name = attr.ib(validator=attr.validators.instance_of(six.string_types))
    padding = attr.ib(validator=callable_validator)

    def __init__(self, java_name, padding):  # type: (Text, Callable) -> None  # noqa=D107
        # Workaround pending resolution of attrs/mypy interaction.
        # https://github.com/python/mypy/issues/2088
        # https://github.com/python-attrs/attrs/issues/215
        self.java_name = java_name
        self.padding = padding
        attr.validate(self)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



