Camel.MultipartSigned¶
| Subclasses: | None | 
|---|
Methods¶
| Inherited: | Camel.Multipart (11), Camel.DataWrapper (31), GObject.Object (37) | 
|---|---|
| Structs: | GObject.ObjectClass (5) | 
| class | new() | 
| get_content_stream() | |
| set_content_stream(content_stream) | |
| set_signature(signature) | 
Virtual Methods¶
| Inherited: | Camel.Multipart (6), Camel.DataWrapper (11), GObject.Object (7) | 
|---|
Properties¶
None
Signals¶
| Inherited: | GObject.Object (1) | 
|---|
Class Details¶
- 
class Camel.MultipartSigned(**kwargs)¶
- Bases: - Camel.Multipart- Abstract: - No - Structure: - Camel.MultipartSignedClass- 
classmethod new()¶
- Returns: - a new - Camel.MultipartSignedobject- Return type: - Camel.MultipartSigned- Create a new - Camel.MultipartSignedobject.- A MultipartSigned should be used to store and create parts of type “multipart/signed”. This is because multipart/signed is entirely broken-by-design (tm) and uses completely different semantics to other mutlipart types. It must be treated as opaque data by any transport. See rfc 3156 for details. - There are 3 ways to create the - Camel.part: Use construct_from_stream. If this is used, then you must set the mime_type appropriately to match the data uses, so that the multiple parts my be extracted.- Use construct_from_parser. The parser MUST be in the - Camel.MimeParserState.HEADERstate, and the current content_type MUST be “multipart/signed” with the appropriate boundary and it SHOULD include the appropriate protocol and hash specifiers.- Use sign_part. A signature - Camel.partwill automatically be created and the whole- Camel.partmay be written using write_to_stream to create a ‘transport-safe’ version (as safe as can be expected with such a broken specification).
 - 
get_content_stream()¶
- Raises: - GLib.Error- Returns: - the signed content stream - Return type: - Camel.Stream- Get the raw signed content stream of the multipart/signed MIME - Camel.partsuitable for use with verification of the signature.
 - 
set_content_stream(content_stream)¶
- Parameters: - content_stream ( - Camel.Stream) – a- Camel.Stream- Explicits sets the raw signed content stream of the multipart/signed MIME - Camel.part.- New in version 3.12. 
 - 
set_signature(signature)¶
- Parameters: - signature ( - Camel.MimePart) – a- Camel.MimePart- Explicitly sets the signature - Camel.partof self.- New in version 3.12. 
 
- 
classmethod