2019-02-05 22:20:23 +01:00
|
|
|
// p≡p Message API
|
2019-02-05 20:42:07 +01:00
|
|
|
|
|
|
|
// Copyleft (c) 2019, p≡p foundation
|
2019-02-05 22:20:23 +01:00
|
|
|
// this file is under GNU General Public License 3.0
|
|
|
|
// see LICENSE.txt
|
2019-02-05 20:42:07 +01:00
|
|
|
|
|
|
|
// written by Volker Birk
|
|
|
|
|
|
|
|
|
2019-02-21 18:04:35 +01:00
|
|
|
enum text_format {
|
2019-02-22 12:49:13 +01:00
|
|
|
hex text_format_plain 0;
|
|
|
|
hex text_format_html 1;
|
|
|
|
hex text_format_other 0xff;
|
2019-02-21 18:04:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
enum msg_direction {
|
2019-02-22 12:49:13 +01:00
|
|
|
item dir_incoming 0;
|
|
|
|
item dir_outgoing 1;
|
2019-02-21 18:04:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
enum enc_format {
|
2019-02-22 12:49:13 +01:00
|
|
|
item enc_none 0 doc='message is not encrypted';
|
|
|
|
item enc_pieces 1 doc='inline PGP + PGP extensions';
|
|
|
|
item enc_S_MIME 2 doc='RFC5751';
|
|
|
|
item enc_PGP_MIME 3 doc='RFC3156';
|
|
|
|
item enc_PEP 4 doc='pEp encryption format';
|
|
|
|
item enc_PGP_MIME_Outlook1 5 doc='Message B0rken by Outlook type 1';
|
2019-02-21 18:04:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
enum ratings {
|
|
|
|
item rating_undefined 0;
|
|
|
|
item rating_cannot_decrypt 1;
|
|
|
|
item rating_have_no_key 2;
|
|
|
|
item rating_unencrypted 3;
|
|
|
|
item rating_unencrypted_for_some doc="don't use this any more",
|
|
|
|
item rating_unreliable 4;
|
|
|
|
item rating_reliable 5;
|
|
|
|
item rating_trusted 6;
|
|
|
|
item rating_trusted_and_anonymized 7;
|
|
|
|
item rating_fully_anonymous 8;
|
|
|
|
item rating_mistrust -1;
|
|
|
|
item rating_b0rken -2;
|
|
|
|
item rating_under_attack -3;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
enum colors {
|
|
|
|
item color_no_color 0;
|
|
|
|
item color_yellow 1;
|
|
|
|
item color_green 2;
|
|
|
|
item color_red -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-21 18:04:35 +01:00
|
|
|
struct message {
|
2019-03-05 13:56:11 +01:00
|
|
|
field msg_direction dir;
|
2019-02-22 12:49:13 +01:00
|
|
|
field string id doc='string of message ID';
|
|
|
|
field string shortmsg doc='string of short message';
|
2019-03-05 13:56:11 +01:00
|
|
|
field string longmsg doc='string of long message (plain)';
|
2019-02-22 12:49:13 +01:00
|
|
|
field string longmsg_formatted doc='string of long message (formatted)';
|
2019-03-05 13:56:11 +01:00
|
|
|
field blob_list attachments doc='blobs with attachements';
|
|
|
|
field blob_ref rawmsg_ref doc='reference to raw message data';
|
|
|
|
field size_t rawmsg_size doc='size of raw message data';
|
2019-02-22 12:49:13 +01:00
|
|
|
field timestamp sent doc='when the message is sent';
|
|
|
|
field timestamp recv doc='when the message is received';
|
|
|
|
field identity from doc='whom the message is from';
|
|
|
|
field identity_list to doc='whom the message is to';
|
|
|
|
field identity recv_by doc='via which identity the message is received';
|
|
|
|
field identity_list cc doc='whom a CC is being sent';
|
|
|
|
field identity_list bcc doc='whom a BCC is being sent';
|
|
|
|
field identity_list reply_to doc='where a reply should go to';
|
2019-03-05 13:56:11 +01:00
|
|
|
field string_list in_reply_to doc='list of strings with MessageIDs of refering messages';
|
|
|
|
field message_ref refering_msg_ref doc='reference to refering message';
|
|
|
|
field string_list references doc='list of strings with references';
|
|
|
|
field message_ref_list refered_by doc='list of references to messages being refered';
|
|
|
|
field string_list keywords doc='list of strings with keywords';
|
|
|
|
field string comments doc='string with comments';
|
2019-02-22 11:32:06 +01:00
|
|
|
field stringpair_list opt_fields doc='optional fields';
|
2019-03-05 13:56:11 +01:00
|
|
|
field enc_format format doc='format of encrypted data';
|
2019-03-28 15:05:07 +01:00
|
|
|
|
|
|
|
new (msg_direction dir);
|
2019-02-21 18:04:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-08 21:51:42 +01:00
|
|
|
protocol session {
|
|
|
|
method encrypt_message
|
|
|
|
doc="encrypt message in memory"
|
|
|
|
{
|
|
|
|
// parms
|
|
|
|
|
|
|
|
supply message src
|
|
|
|
doc="""
|
|
|
|
message to encrypt - usually in-only, but can be in-out for
|
|
|
|
unencrypted messages; in that case, we may attach the key and
|
|
|
|
decorate the message
|
|
|
|
""";
|
|
|
|
|
|
|
|
use hash_list extra doc="extra keys for encryption";
|
|
|
|
|
|
|
|
create message dst
|
|
|
|
doc="""
|
|
|
|
pointer to new encrypted message or #NV if no encryption could
|
|
|
|
take place
|
2019-02-21 18:04:35 +01:00
|
|
|
""";
|
2019-02-08 21:51:42 +01:00
|
|
|
|
2019-02-21 18:04:35 +01:00
|
|
|
use enc_format format doc="encrypted format";
|
2019-02-08 21:51:42 +01:00
|
|
|
|
|
|
|
// flags
|
|
|
|
|
|
|
|
flags {
|
2019-02-11 17:47:12 +01:00
|
|
|
flag default 0x0 doc='"default" means whatever the default behaviour for the function is.';
|
2019-02-08 21:51:42 +01:00
|
|
|
flag force_encryption 0x1;
|
2019-02-22 12:49:13 +01:00
|
|
|
flag force_unsigned 0x2 doc='This flag is for special use cases and should not be used by normal pEp clients!';
|
|
|
|
flag force_no_attached_key 0x4;
|
|
|
|
flag inner_message 0x8 doc='This is mainly used by pEp clients to send private keys to their own PGP-only device.';
|
|
|
|
flag force_version_1 0x10 doc='This is mainly used by pEp clients to send private keys to their own PGP-only device';
|
|
|
|
flag key_reset_only 0x20;
|
2019-02-08 21:51:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// exceptions
|
|
|
|
|
2019-02-21 18:04:35 +01:00
|
|
|
throws key_has_ambig_name doc="at least one of the receipient keys has an ambiguous name";
|
2019-02-08 21:51:42 +01:00
|
|
|
|
|
|
|
throws unencrypted
|
|
|
|
doc="""
|
|
|
|
on demand or no recipients with usable key, is left unencrypted,
|
|
|
|
and key is attached to it
|
2019-02-21 18:04:35 +01:00
|
|
|
""";
|
2019-02-05 20:42:07 +01:00
|
|
|
}
|
2019-02-14 18:34:23 +01:00
|
|
|
|
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
method encrypt_message_and_add_priv_key
|
|
|
|
doc="encrypt message in memory, adding an encrypted private key (encrypted separately and sent within the inner message)"
|
|
|
|
{
|
|
|
|
// parms
|
|
|
|
|
|
|
|
use message src doc="message to encrypt";
|
|
|
|
|
|
|
|
create message dst
|
2019-03-05 13:56:11 +01:00
|
|
|
doc="pointer to new encrypted message or empty if no encryption could take place";
|
2019-02-22 12:49:13 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
use hash to_fpr
|
2019-02-22 12:49:13 +01:00
|
|
|
doc="fingerprint of the recipient key to which the private key should be encrypted";
|
|
|
|
|
|
|
|
use enc_format format doc="encrypted format";
|
|
|
|
|
|
|
|
// flags
|
|
|
|
|
|
|
|
flags {
|
|
|
|
flag default 0x0 doc='"default" means whatever the default behaviour for the function is.';
|
|
|
|
flag force_encryption 0x1;
|
|
|
|
flag force_unsigned 0x2 doc='This flag is for special use cases and should not be used by normal pEp clients!';
|
|
|
|
flag force_no_attached_key 0x4;
|
|
|
|
flag inner_message 0x8 doc='This is mainly used by pEp clients to send private keys to their own PGP-only device.';
|
|
|
|
flag force_version_1 0x10 doc='This is mainly used by pEp clients to send private keys to their own PGP-only device';
|
|
|
|
flag key_reset_only 0x20;
|
|
|
|
}
|
|
|
|
|
|
|
|
// exceptions
|
|
|
|
|
|
|
|
throws key_has_ambig_name doc="at least one of the receipient keys has an ambiguous name";
|
|
|
|
|
|
|
|
throws unencrypted
|
|
|
|
doc="""
|
|
|
|
on demand or no recipients with usable key, is left unencrypted,
|
|
|
|
and key is attached to it
|
|
|
|
""";
|
|
|
|
}
|
2019-02-14 18:34:23 +01:00
|
|
|
|
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
method encrypt_message_for_self
|
|
|
|
doc="""
|
|
|
|
encrypt message in memory for user's identity only,
|
|
|
|
ignoring recipients and other identities from the message
|
|
|
|
"""
|
|
|
|
{
|
|
|
|
// parms
|
|
|
|
|
|
|
|
use identity target_id
|
|
|
|
doc="""
|
|
|
|
self identity this message should be encrypted for. Message is NOT encrypted for
|
|
|
|
identities other than the target_id (and then, only if the target_id refers to self!).
|
|
|
|
""";
|
|
|
|
|
|
|
|
use message src doc="message to encrypt";
|
|
|
|
|
|
|
|
use hash_list extra doc="extra keys for encryption";
|
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
create message dst doc="pointer to new encrypted message or empty on failure";
|
2019-02-22 12:49:13 +01:00
|
|
|
|
|
|
|
use enc_format format doc="encrypted format";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
// flags
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
flags {
|
|
|
|
flag default 0x0 doc='"default" means whatever the default behaviour for the function is.';
|
|
|
|
flag force_encryption 0x1;
|
|
|
|
flag force_unsigned 0x2 doc='This flag is for special use cases and should not be used by normal pEp clients!';
|
|
|
|
flag force_no_attached_key 0x4;
|
|
|
|
flag inner_message 0x8 doc='This is mainly used by pEp clients to send private keys to their own PGP-only device.';
|
|
|
|
flag force_version_1 0x10 doc='This is mainly used by pEp clients to send private keys to their own PGP-only device';
|
|
|
|
flag key_reset_only 0x20;
|
|
|
|
}
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
doc | (FIXME: The exceptions may not be correct or complete)
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws key_not_found doc="at least one of the receipient keys could not be found";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws key_has_ambig_name doc="at least one of the receipient keys has an ambiguous name";
|
|
|
|
|
|
|
|
throws get_key_failed doc="cannot retrieve key";
|
|
|
|
}
|
2019-02-14 18:34:23 +01:00
|
|
|
|
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
method decrypt_message
|
|
|
|
doc="decrypt message in memory"
|
|
|
|
{
|
2019-03-05 13:56:11 +01:00
|
|
|
// parms
|
2019-02-22 12:49:13 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
supply message src
|
2019-02-22 12:49:13 +01:00
|
|
|
doc="""
|
2019-03-05 13:56:11 +01:00
|
|
|
message to decrypt.
|
|
|
|
The ownership of src remains with the caller - however, the contents
|
|
|
|
might be modified (strings freed and allocated anew or set to empty,
|
|
|
|
etc) intentionally; when this happens, decrypt_flag_src_modified is set.
|
2019-02-22 12:49:13 +01:00
|
|
|
""";
|
2019-03-05 13:56:11 +01:00
|
|
|
|
|
|
|
create message dst doc="pointer to new decrypted message or empty on failure";
|
|
|
|
|
|
|
|
supply hash_list keylist
|
2019-02-22 12:49:13 +01:00
|
|
|
doc="""
|
2019-03-05 13:56:11 +01:00
|
|
|
in: stringlist with additional keyids for reencryption if needed
|
|
|
|
(will be freed and replaced with output keylist)
|
|
|
|
out: stringlist with keyids used for signing and encryption. first
|
|
|
|
first key is signer, additional keys are the ones it was encrypted
|
|
|
|
to. Only signer and whichever of the user's keys was used are reliable.
|
|
|
|
The ownership of keylist goes to the caller.
|
|
|
|
If src is unencrypted this function returns unencrypted and sets dst to empty.
|
2019-02-22 12:49:13 +01:00
|
|
|
""";
|
2019-03-05 13:56:11 +01:00
|
|
|
|
|
|
|
return rating msg_rating doc="rating for the message";
|
|
|
|
|
|
|
|
// flags
|
|
|
|
|
2019-03-27 17:11:24 +01:00
|
|
|
flags {
|
|
|
|
flag decrypt_flag_own_private_key 0x1
|
2019-03-05 13:56:11 +01:00
|
|
|
doc="""
|
|
|
|
private key was imported for one of our addresses (NOT trusted
|
|
|
|
or set to be used - handshake/trust is required for that)
|
|
|
|
""";
|
2019-03-28 15:05:07 +01:00
|
|
|
flag decrypt_flag_consume 0x2 doc='used by sync';
|
|
|
|
flag decrypt_flag_ignore 0x4 doc='used by sync';
|
2019-03-27 17:11:24 +01:00
|
|
|
flag decrypt_flag_src_modified 0x8
|
2019-03-05 13:56:11 +01:00
|
|
|
doc="""
|
|
|
|
indicates that the src object has been modified. At the moment,
|
|
|
|
this is always as a direct result of the behaviour driven
|
|
|
|
by the input flags. This flag is the ONLY value that should be
|
|
|
|
relied upon to see if such changes have taken place.
|
|
|
|
""";
|
2019-03-27 17:11:24 +01:00
|
|
|
flag decrypt_flag_untrusted_server 0x100
|
2019-03-05 13:56:11 +01:00
|
|
|
doc="""
|
|
|
|
input flags. Used to signal that decrypt function should engage in behaviour
|
|
|
|
specified for when the server storing the source is untrusted.
|
|
|
|
""";
|
2019-03-27 17:11:24 +01:00
|
|
|
}
|
2019-02-22 12:49:13 +01:00
|
|
|
|
|
|
|
// exceptions
|
|
|
|
|
|
|
|
throws decrypted doc="if message decrypted but not verified";
|
2019-02-21 18:04:35 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws cannot_reencrypt
|
|
|
|
doc="""
|
|
|
|
if message was decrypted (and possibly verified) but a reencryption
|
|
|
|
operation is expected by the caller and failed.
|
|
|
|
""";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws unencrypted
|
|
|
|
doc="""
|
|
|
|
if src is unencrypted this function returns unencrypted and sets
|
2019-03-05 13:56:11 +01:00
|
|
|
dst to empty.
|
2019-02-22 12:49:13 +01:00
|
|
|
""";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
throws any doc="all error status values allowed";
|
2019-02-22 12:49:13 +01:00
|
|
|
}
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-21 18:04:35 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
method own_message_private_key_details
|
|
|
|
doc="""
|
|
|
|
details on own key in own message. Note: In order to obtain details about key
|
|
|
|
to be possibly imported as a replacement of key currently used as own identity,
|
|
|
|
application passes message that have been previously flagged by decrypt_message()
|
|
|
|
as own message containing own key to this function.
|
|
|
|
"""
|
|
|
|
{
|
|
|
|
//parms
|
2019-02-21 18:04:35 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use message msg
|
|
|
|
doc="""
|
|
|
|
message to decrypt. msg MUST be encrypted so that this function
|
|
|
|
can check own signature.
|
|
|
|
""";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
create identity ident doc="identity containing uid, address and fpr of key";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
// exceptions
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws any doc="error status"
|
|
|
|
}
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-21 18:04:35 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
method outgoing_message_rating
|
|
|
|
doc="get rating for an outgoing message"
|
|
|
|
{
|
|
|
|
//parms
|
2019-02-21 18:04:35 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use message msg
|
|
|
|
doc="""
|
|
|
|
message to get the rating for. From must point to a valid pEp_identity.
|
|
|
|
Dir must be dir_outgoing.
|
|
|
|
""";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
return rating msg_rating doc="rating for the message";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
// exceptions
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws any doc="error status"
|
|
|
|
}
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-21 18:04:35 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
method outgoing_message_rating_preview
|
|
|
|
doc="get rating preview"
|
|
|
|
{
|
|
|
|
//parms
|
2019-02-21 18:04:35 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use message msg
|
|
|
|
doc="""
|
|
|
|
message to get the rating for. From must point to a valid pEp_identity.
|
|
|
|
Dir must be dir_outgoing.
|
|
|
|
""";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
return rating msg_rating doc="rating preview for the message";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
// exceptions
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws any doc="error status"
|
|
|
|
}
|
2019-02-14 18:34:23 +01:00
|
|
|
|
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
method identity_rating
|
|
|
|
doc="get rating for a single identity"
|
|
|
|
{
|
|
|
|
//parms
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use identity ident doc="identity to get the rating for";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
return rating identity_rating doc="rating for the identity";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
// exceptions
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws any doc="error status"
|
|
|
|
}
|
2019-02-14 18:34:23 +01:00
|
|
|
|
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
method get_trustwords
|
|
|
|
doc="get full trustwords string for a *pair* of identities"
|
|
|
|
{
|
|
|
|
//parms
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
use identity id1 doc="identity of first party in communication - fpr can't be empty";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
use identity id2 doc="identity of second party in communication - fpr can't be empty";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
use ISO639_1 lang doc="string with ISO 639-1 language code";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
create string words
|
2019-02-22 12:49:13 +01:00
|
|
|
doc="""
|
2019-03-05 13:56:11 +01:00
|
|
|
string with all trustwords, separated
|
|
|
|
by a blank each. Empty if language is not supported or trustword
|
2019-02-22 12:49:13 +01:00
|
|
|
wordlist is damaged or unavailable.
|
|
|
|
The word pointer goes to the ownership of the caller.
|
|
|
|
The caller is responsible to free() it (on Windoze use pEp_free())
|
|
|
|
""";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use bool full
|
|
|
|
doc="""
|
|
|
|
if true, generate ALL trustwords for these identities.
|
|
|
|
else, generate a fixed-size subset. (TODO: fixed-minimum-entropy
|
|
|
|
subset in next version)
|
|
|
|
""";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
// exceptions
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws out_of_memory
|
|
|
|
doc="out of memory";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws trustword_not_found
|
|
|
|
doc="at least one trustword not found";
|
|
|
|
}
|
2019-02-14 18:34:23 +01:00
|
|
|
|
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
method get_message_trustwords
|
|
|
|
doc="get full trustwords string for message sender and reciever identities"
|
|
|
|
{
|
|
|
|
//parms
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use message msg doc="message to get sender identity from";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use hash_list keylist
|
2019-03-05 13:56:11 +01:00
|
|
|
doc="empty if message to be decrypted, keylist returned by decrypt_message() otherwise.";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
use identity received_by doc="identity for account receiving message can't be empty";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
use ISO639_1 lang doc="C string with ISO 639-1 language code";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
create string words
|
2019-02-22 12:49:13 +01:00
|
|
|
doc="""
|
2019-03-05 13:56:11 +01:00
|
|
|
string with all trustwords, separated by a blank each.
|
|
|
|
Empty if language is not supported or trustword wordlist is damaged or unavailable.
|
2019-02-22 12:49:13 +01:00
|
|
|
""";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use bool full
|
|
|
|
doc="""
|
|
|
|
if true, generate ALL trustwords for these identities.
|
|
|
|
else, generate a fixed-size subset. (TODO: fixed-minimum-entropy
|
|
|
|
subset in next version)
|
|
|
|
""";
|
2019-02-21 18:04:35 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
// exceptions
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws out_of_memory doc="out of memory";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws trustword_not_found doc="at least one trustword not found";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws like decrypt_message doc="error status of decrypt_message() if decryption fails"
|
|
|
|
}
|
2019-02-14 18:34:23 +01:00
|
|
|
|
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
method re_evaluate_message_rating
|
|
|
|
doc="re-evaluate already decrypted message rating"
|
|
|
|
{
|
|
|
|
//parms
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use message msg
|
|
|
|
doc="message to get the rating for. msg->from must point to a valid pEp_identity";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use hash_list x_keylist doc="decrypted message recipients keys fpr";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use rating x_enc_status doc="original rating for the decrypted message";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
return rating msg_rating doc="rating for the message";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
// exceptions
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws illegal_value
|
|
|
|
doc="""
|
|
|
|
if decrypted message doesn't contain X-EncStatus optional field and
|
|
|
|
x_enc_status is pEp_rating_udefined or if decrypted message doesn't
|
2019-03-05 13:56:11 +01:00
|
|
|
contain X-Keylist optional field and x_keylist is empty.
|
2019-02-22 12:49:13 +01:00
|
|
|
""";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws out_of_memory doc="if not enough memory could be allocated";
|
|
|
|
}
|
2019-02-14 18:34:23 +01:00
|
|
|
|
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
method get_key_rating_for_user
|
|
|
|
doc="get the rating of a certain key for a certain user"
|
|
|
|
{
|
|
|
|
//parms
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use string user_id doc="string with user ID";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use string fpr doc="string with fingerprint";
|
2019-02-14 18:34:23 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
return rating key_rating doc="rating of key for this user";
|
|
|
|
|
|
|
|
// exceptions
|
2019-02-21 18:04:35 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
throws record_not_found
|
|
|
|
doc="if no trust record for user_id and fpr can be found"
|
|
|
|
}
|
2019-03-27 17:11:24 +01:00
|
|
|
}
|
2019-02-22 12:49:13 +01:00
|
|
|
|
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
func color_from_rating
|
|
|
|
doc="calculate color from rating"
|
|
|
|
{
|
|
|
|
// parms
|
2019-02-22 11:16:18 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
use color_from_rating rating doc="color representing that rating"
|
2019-02-22 11:16:18 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
// return value
|
|
|
|
return color rating_color doc="color representing that rating"
|
2019-02-22 11:16:18 +01:00
|
|
|
}
|
|
|
|
|
2019-03-27 17:11:24 +01:00
|
|
|
|
2019-03-05 13:56:11 +01:00
|
|
|
func get_binary_path
|
|
|
|
doc="retrieve path of cryptotech binary if available"
|
|
|
|
{
|
2019-02-22 12:49:13 +01:00
|
|
|
//parms
|
2019-02-22 11:16:18 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use cryptotech tech
|
|
|
|
doc="cryptotech to get the binary for";
|
2019-02-22 11:16:18 +01:00
|
|
|
|
2019-02-22 12:49:13 +01:00
|
|
|
use string path
|
|
|
|
doc="""
|
2019-03-05 13:56:11 +01:00
|
|
|
path to cryptotech binary or empty if not available. **path is owned by
|
2019-02-22 12:49:13 +01:00
|
|
|
the library, do not change it!;
|
|
|
|
"""
|
2019-02-22 11:16:18 +01:00
|
|
|
}
|