The rfc4055 module has identifiers for raw sha224 to sha512, but none for the withRSAEncryption variants.
It has the following, which is discussed in the 5th paragraph of RFC 4055 Section 5:
sha256Identifier = rfc5280.AlgorithmIdentifier()
sha256Identifier['algorithm'] = id_sha256
sha256Identifier['parameters'] = univ.Null("")
But it doesn't have, the following which is discussed in the subsequent paragraphs of Section 5 of the RFC:
sha256WithRSAEncryptionIdentifier = rfc5280.AlgorithmIdentifier()
sha256WithRSAEncryptionIdentifier['algorithm'] = sha256WithRSAEncryption
sha256WithRSAEncryptionIdentifier['parameters'] = univ.Null("")
The same goes for sha224, sha384 and sha512.
The rfc4055 module has identifiers for raw sha224 to sha512, but none for the withRSAEncryption variants.
It has the following, which is discussed in the 5th paragraph of RFC 4055 Section 5:
But it doesn't have, the following which is discussed in the subsequent paragraphs of Section 5 of the RFC:
The same goes for sha224, sha384 and sha512.