File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ impl RoomKeyInfo {
174
174
}
175
175
}
176
176
177
- /// Struct containing the bundle of secrets to fully activate a new devices for
177
+ /// Struct containing the bundle of secrets to fully activate a new device for
178
178
/// end-to-end encryption.
179
179
#[ derive( Debug ) ]
180
180
#[ wasm_bindgen]
@@ -186,7 +186,7 @@ pub struct SecretsBundle {
186
186
#[ derive( Debug ) ]
187
187
#[ wasm_bindgen( getter_with_clone) ]
188
188
pub struct BackupSecretsBundle {
189
- /// The backup decryption key.
189
+ /// The backup decryption key, encoded as unpadded base64 .
190
190
pub key : String ,
191
191
/// The backup version which this backup decryption key is used with.
192
192
pub backup_version : String ,
Original file line number Diff line number Diff line change @@ -41,7 +41,9 @@ pub struct Ecies {
41
41
impl Ecies {
42
42
/// Create a new, random, unestablished ECIES session.
43
43
///
44
- /// This method will use the `MATRIX_QR_CODE_LOGIN` info.
44
+ /// This method will use the
45
+ /// [`MATRIX_QR_CODE_LOGIN`](https://github.com/matrix-org/matrix-spec-proposals/pull/4108)
46
+ /// info for domain separation when creating the session.
45
47
#[ wasm_bindgen( constructor) ]
46
48
pub fn new ( ) -> Self {
47
49
let inner = ecies:: Ecies :: new ( ) ;
You can’t perform that action at this time.
0 commit comments