Update securejoin links

This commit is contained in:
Hocuri
2023-11-17 21:33:27 +01:00
committed by holger krekel
parent cc75038ccc
commit 72bacd56f7
4 changed files with 6 additions and 6 deletions

View File

@@ -2561,7 +2561,7 @@ dc_lot_t* dc_check_qr (dc_context_t* context, const char*
* the Verified-Group-Invite protocol is offered in the QR code; * the Verified-Group-Invite protocol is offered in the QR code;
* works for protected groups as well as for normal groups. * works for protected groups as well as for normal groups.
* If set to 0, the Setup-Contact protocol is offered in the QR code. * If set to 0, the Setup-Contact protocol is offered in the QR code.
* See https://countermitm.readthedocs.io/en/latest/new.html * See https://securejoin.readthedocs.io/en/latest/new.html
* for details about both protocols. * for details about both protocols.
* @return The text that should go to the QR code, * @return The text that should go to the QR code,
* On errors, an empty QR code is returned, NULL is never returned. * On errors, an empty QR code is returned, NULL is never returned.
@@ -2597,7 +2597,7 @@ char* dc_get_securejoin_qr_svg (dc_context_t* context, uint32_
* *
* Subsequent calls of dc_join_securejoin() will abort previous, unfinished handshakes. * Subsequent calls of dc_join_securejoin() will abort previous, unfinished handshakes.
* *
* See https://countermitm.readthedocs.io/en/latest/new.html * See https://securejoin.readthedocs.io/en/latest/new.html
* for details about both protocols. * for details about both protocols.
* *
* @memberof dc_context_t * @memberof dc_context_t

View File

@@ -678,7 +678,7 @@ impl CommandApi {
/// the Verified-Group-Invite protocol is offered in the QR code; /// the Verified-Group-Invite protocol is offered in the QR code;
/// works for protected groups as well as for normal groups. /// works for protected groups as well as for normal groups.
/// If not set, the Setup-Contact protocol is offered in the QR code. /// If not set, the Setup-Contact protocol is offered in the QR code.
/// See https://countermitm.readthedocs.io/en/latest/new.html /// See https://securejoin.readthedocs.io/en/latest/new.html
/// for details about both protocols. /// for details about both protocols.
/// ///
/// return format: `[code, svg]` /// return format: `[code, svg]`
@@ -707,7 +707,7 @@ impl CommandApi {
/// ///
/// Subsequent calls of `secure_join()` will abort previous, unfinished handshakes. /// Subsequent calls of `secure_join()` will abort previous, unfinished handshakes.
/// ///
/// See https://countermitm.readthedocs.io/en/latest/new.html /// See https://securejoin.readthedocs.io/en/latest/new.html
/// for details about both protocols. /// for details about both protocols.
/// ///
/// **qr**: The text of the scanned QR code. Typically, the same string as given /// **qr**: The text of the scanned QR code. Typically, the same string as given

View File

@@ -218,7 +218,7 @@ class Account:
The function returns immediately and the handshake runs in background, sending The function returns immediately and the handshake runs in background, sending
and receiving several messages. and receiving several messages.
Subsequent calls of `secure_join()` will abort previous, unfinished handshakes. Subsequent calls of `secure_join()` will abort previous, unfinished handshakes.
See https://countermitm.readthedocs.io/en/latest/new.html for protocol details. See https://securejoin.readthedocs.io/en/latest/new.html for protocol details.
:param qrdata: The text of the scanned QR code. :param qrdata: The text of the scanned QR code.
""" """

View File

@@ -1,4 +1,4 @@
//! Verified contact protocol implementation as [specified by countermitm project](https://countermitm.readthedocs.io/en/stable/new.html#setup-contact-protocol). //! Verified contact protocol implementation as [specified by countermitm project](https://securejoin.readthedocs.io/en/latest/new.html#setup-contact-protocol).
use std::convert::TryFrom; use std::convert::TryFrom;