aboutsummaryrefslogtreecommitdiff
path: root/pyasn1_modules/rfc8226.py
AgeCommit message (Collapse)Author
2019-07-31Make SIZE OF constraint operational (#46)Ilya Etingof
Changes `ValueSizeConstraint` erroneously applied to `SequenceOf` and `SetOf` objects via `subtypeConstraint` attribute to be applied via `sizeSpec` attribute. Although `sizeSpec` takes the same constraint objects as `subtypeConstraint`, the former is only verified on de/serialization i.e. when the [constructed] object at hand is fully populated, while the latter is applied to [scalar] types at the moment of instantiation. This change also bumps pyasn1 requirement to 0.4.6.
2019-07-20Added maps for use with openType (#53)Russ Housley
2019-04-25PEP8 latest additionsIlya Etingof
2019-01-26Add RFC8226 (#21)Ilya Etingof
Implement RFC8226 Implements JWT Claim Constraints and TN Authorization List for X.509 certificate extensions. Also fixes bug in `rfc5280.AlgorithmIdentifier` ANY type definition.