about summary refs log tree commit diff stats
path: root/src/xmpp/omemo.c
Commit message (Expand)AuthorAgeFilesLines
* Cleanup: gchar as gchar instead of charJohn Hernandez2023-05-041-4/+2
* Add macro for possible NULL prints and use it on known sportsthe xhr2023-01-261-2/+2
* Check if string is NULL and print placeholder insteadthe xhr2023-01-261-1/+1
* auto-formatSteffen Jaeckel2022-02-011-1/+1
* omemo: log when no pubsubMichael Vetter2021-12-131-0/+4
* Format code correctlyMichael Vetter2021-10-051-9/+8
* Fix memleakPaul Fariello2021-08-201-0/+2
* Log error received while publishing OMEMO device listPaul Fariello2021-08-201-1/+2
* OMEMO: Fix precondition-not-met handlingPaul Fariello2021-08-191-5/+14
* Create devicelist if it doesn't existsPaul Fariello2021-08-191-1/+18
* OMEMO: try device list creation and reconfigure on precondition-not-metPaul Fariello2021-08-191-6/+24
* Ensure devicelist access model is configured before updating itPaul Fariello2021-08-191-23/+92
* OMEMO - Unable to publish own device listDebXWoody2021-06-011-0/+16
* Improved OMEMO loggingDebXWoody2021-05-281-8/+15
* Add config.h in files were it was missingMichael Vetter2021-03-261-0/+2
* [OMEMO]: Fix bundle publishingMaximilian Wuttke2021-03-091-14/+16
* Logging [OMEMO]Maximilian Wuttke2021-03-091-1/+26
* Logging [OMEMO]Maximilian Wuttke2021-03-091-6/+10
* Apply coding styleMichael Vetter2020-07-071-118/+116
* Revert "Apply coding style"Michael Vetter2020-07-071-116/+118
* Apply coding styleMichael Vetter2020-07-071-118/+116
* Messages are not shown in ChatSecureDebXWoody2020-07-041-20/+39
* _omemo_receive_devicelist() use if/elseMichael Vetter2020-05-291-18/+19
* OMEMO - Request only "current" itemDebXWoody2020-05-231-1/+5
* Fix maybe uninitialized and don't guard g_freePaul Fariello2020-01-201-17/+14
* Ignore invalid base64 in OMEMO stanzasPaul Fariello2020-01-201-10/+44
* omemo: Check for `1` alongside `true` in an omemo encrypted message stanzaSven Speckmaier2020-01-031-1/+3
* Add vim modelineMichael Vetter2019-11-131-0/+35
* omemo: Check stanza names when iterating nodesaszlig2019-10-291-0/+8
* Remove prefix from stanza idMichael Vetter2019-10-171-5/+5
* Fix double free in omemo_start_device_session_handle_bundle()Michael Vetter2019-07-081-0/+1
* Free key on error in omemo_start_device_session_handle_bundle()Michael Vetter2019-07-041-0/+5
* Rework omemo_start_device_session_handle_bundle exitMichael Vetter2019-07-041-24/+38
* Add trusted state after OMEMO decryptionPaul Fariello2019-06-201-2/+2
* OMEMO: Check if ID is present before using itMichael Vetter2019-04-241-1/+5
* Wait for discovery end to publish omemo devicelist and bundlePaul Fariello2019-04-101-2/+6
* Fix devicelist notification handlerPaul Fariello2019-04-101-4/+4
* Add support for missing from in bundle iqPaul Fariello2019-04-101-3/+9
* Handle bundle publication error on publish-optionsPaul Fariello2019-04-101-11/+100
* Temporarly disable check for publish-options supportPaul Fariello2019-04-101-6/+2
* Use connection_support to check for publish-options supportPaul Fariello2019-04-101-6/+2
* Add support for disconnect in OMEMOPaul Fariello2019-04-101-9/+33
* Add publish option to OMEMO device list and bundlePaul Fariello2019-04-101-0/+14
* Add MUC message decryptionPaul Fariello2019-04-101-4/+5
* device_list iq should be from barejid or nonePaul Fariello2019-04-101-16/+11
* Randomly choose a prekey on session buildPaul Fariello2019-04-101-19/+22
* Follow normal workflow for OMEMO message receptionPaul Fariello2019-04-101-0/+79
* Add OMEMO message encryption and decryptionPaul Fariello2019-04-101-2/+2
* Create signal sessionPaul Fariello2019-04-101-3/+47
* Add signal store backend and OMEMO start commandPaul Fariello2019-04-101-1/+73
13'>513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908