1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 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
#![allow(deprecated)]
pub(super) mod key;
pub mod rendezvous;
mod server_messages;
#[cfg(test)]
mod test;
mod wordlist;
use serde_derive::{Deserialize, Serialize};
use std::borrow::Cow;
use self::{rendezvous::*, server_messages::EncryptedMessage};
use log::*;
use crypto_secretbox as secretbox;
/// An error occurred in the wormhole connection
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum WormholeError {
/// Corrupt message received from peer. Some deserialization went wrong, we probably got some garbage
#[error("Corrupt message received from peer")]
ProtocolJson(
#[from]
#[source]
serde_json::Error,
),
/// Error with the rendezvous server connection. Some deserialization went wrong, we probably got some garbage
#[error("Error with the rendezvous server connection")]
ServerError(
#[from]
#[source]
rendezvous::RendezvousError,
),
/// A generic string message for "something went wrong", i.e.
/// the server sent some bullshit message order
#[error("Protocol error: {}", _0)]
Protocol(Box<str>),
/// Key confirmation failed. If you didn't mistype the code,
/// this is a sign of an attacker guessing passwords. Please try
/// again some time later.
#[error(
"Key confirmation failed. If you didn't mistype the code, \
this is a sign of an attacker guessing passwords. Please try \
again some time later."
)]
PakeFailed,
/// Cannot decrypt a received message
#[error("Cannot decrypt a received message")]
Crypto,
/// Nameplate is unclaimed
#[error("Nameplate is unclaimed: {}", _0)]
UnclaimedNameplate(Nameplate),
}
impl WormholeError {
/** Should we tell the server that we are "errory" or "scared"? */
pub fn is_scared(&self) -> bool {
matches!(self, Self::PakeFailed)
}
}
impl From<std::convert::Infallible> for WormholeError {
fn from(_: std::convert::Infallible) -> Self {
unreachable!()
}
}
/**
* The result of the client-server handshake
*/
#[derive(Clone, Debug, PartialEq, Eq)]
#[deprecated(
since = "0.7.0",
note = "part of the response of `Wormhole::connect_without_code(...)` and `Wormhole::connect_with_code(...) please use 'MailboxConnection::create(...)`/`MailboxConnection::connect(..)` and `Wormhole::connect(mailbox_connection)' instead"
)]
pub struct WormholeWelcome {
/** A welcome message from the server (think of "message of the day"). Should be displayed to the user if present. */
pub welcome: Option<String>,
/// The wormhole code used in the exchange
pub code: Code,
}
/**
* Establishing Wormhole connection
*
* You can send and receive arbitrary messages in form of byte slices over it, using [`Wormhole::send`] and [`Wormhole::receive`].
* Everything else (including encryption) will be handled for you.
*
* To create a wormhole, use the mailbox connection created via [`MailboxConnection::create`] or [`MailboxConnection::connect`] with the [`Wormhole::connect`] method.
* Typically, the sender side connects without a code (which will create one), and the receiver side has one (the user entered it, who got it from the sender).
*
* # Clean shutdown
*
* TODO
*/
/* TODO
* Maybe a better way to handle application level protocols is to create a trait for them and then
* to paramterize over them.
*/
/// A `MailboxConnection` contains a `RendezvousServer` which is connected to the mailbox
pub struct MailboxConnection<V: serde::Serialize + Send + Sync + 'static> {
/// A copy of `AppConfig`,
config: AppConfig<V>,
/// The `RendezvousServer` with an open mailbox connection
server: RendezvousServer,
/// The welcome message received from the mailbox server
welcome: Option<String>,
/// The mailbox id of the created mailbox
mailbox: Mailbox,
/// The Code which is required to connect to the mailbox.
code: Code,
}
impl<V: serde::Serialize + Send + Sync + 'static> MailboxConnection<V> {
/// Create a connection to a mailbox which is configured with a `Code` starting with the nameplate and by a given number of wordlist based random words.
///
/// # Arguments
///
/// * `config`: Application configuration
/// * `code_length`: number of words used for the password. The words are taken from the default wordlist.
///
/// # Examples
///
/// ```no_run
/// # fn main() -> eyre::Result<()> { async_std::task::block_on(async {
/// use magic_wormhole::{transfer::APP_CONFIG, AppConfig, MailboxConnection};
/// let config = APP_CONFIG;
/// let mailbox_connection = MailboxConnection::create(config, 2).await?;
/// # Ok(()) })}
/// ```
pub async fn create(config: AppConfig<V>, code_length: usize) -> Result<Self, WormholeError> {
Self::create_with_password(
config,
&wordlist::default_wordlist(code_length).choose_words(),
)
.await
}
/// Create a connection to a mailbox which is configured with a `Code` containing the nameplate and the given password.
///
/// # Arguments
///
/// * `config`: Application configuration
/// * `password`: Free text password which will be appended to the nameplate number to form the `Code`
///
/// # Examples
///
/// ```no_run
/// # fn main() -> eyre::Result<()> { async_std::task::block_on(async {
/// use magic_wormhole::{transfer::APP_CONFIG, MailboxConnection};
/// let config = APP_CONFIG;
/// let mailbox_connection = MailboxConnection::create_with_password(config, "secret").await?;
/// # Ok(()) })}
/// ```
pub async fn create_with_password(
config: AppConfig<V>,
password: &str,
) -> Result<Self, WormholeError> {
let (mut server, welcome) =
RendezvousServer::connect(&config.id, &config.rendezvous_url).await?;
let (nameplate, mailbox) = server.allocate_claim_open().await?;
let code = Code::new(&nameplate, password);
Ok(MailboxConnection {
config,
server,
mailbox,
code,
welcome,
})
}
/// Create a connection to a mailbox defined by a `Code` which contains the `Nameplate` and the password to authorize the access.
///
/// # Arguments
///
/// * `config`: Application configuration
/// * `code`: The `Code` required to authorize to connect to an existing mailbox.
/// * `allocate`:
/// - `true`: Allocates a `Nameplate` if it does not exist.
/// - `false`: The call fails with a `WormholeError::UnclaimedNameplate` when the `Nameplate` does not exist.
///
/// # Examples
///
/// ```no_run
/// # fn main() -> eyre::Result<()> { async_std::task::block_on(async {
/// use magic_wormhole::{transfer::APP_CONFIG, Code, MailboxConnection, Nameplate};
/// let config = APP_CONFIG;
/// let code = Code::new(&Nameplate::new("5"), "password");
/// let mailbox_connection = MailboxConnection::connect(config, code, false).await?;
/// # Ok(()) })}
/// ```
pub async fn connect(
config: AppConfig<V>,
code: Code,
allocate: bool,
) -> Result<Self, WormholeError> {
let (mut server, welcome) =
RendezvousServer::connect(&config.id, &config.rendezvous_url).await?;
let nameplate = code.nameplate();
if !allocate {
let nameplates = server.list_nameplates().await?;
if !nameplates.contains(&nameplate) {
server.shutdown(Mood::Errory).await?;
return Err(WormholeError::UnclaimedNameplate(nameplate));
}
}
let mailbox = server.claim_open(nameplate).await?;
Ok(MailboxConnection {
config,
server,
mailbox,
code,
welcome,
})
}
/// Shut down the connection to the mailbox
///
/// # Arguments
///
/// * `mood`: `Mood` should give a hint of the reason of the shutdown
///
/// # Examples
///
/// ```
/// # fn main() -> eyre::Result<()> { use magic_wormhole::WormholeError;
/// async_std::task::block_on(async {
/// use magic_wormhole::{transfer::APP_CONFIG, MailboxConnection, Mood};
/// let config = APP_CONFIG;
/// let mailbox_connection = MailboxConnection::create_with_password(config, "secret")
/// .await?;
/// mailbox_connection.shutdown(Mood::Happy).await?;
/// # Ok(())})}
/// ```
pub async fn shutdown(self, mood: Mood) -> Result<(), WormholeError> {
self.server
.shutdown(mood)
.await
.map_err(WormholeError::ServerError)
}
/// The welcome message received from the mailbox server
pub fn welcome(&self) -> Option<&str> {
self.welcome.as_deref()
}
/// The mailbox id of the created mailbox
pub fn mailbox(&self) -> &Mailbox {
&self.mailbox
}
/// The Code that was used to connect to the mailbox.
pub fn code(&self) -> &Code {
&self.code
}
}
/// A wormhole is an open connection to a peer via the rendezvous server.
///
/// This establishes the client-client part of the connection setup.
#[derive(Debug)]
pub struct Wormhole {
#[allow(deprecated)]
server: RendezvousServer,
phase: u64,
key: key::Key<key::WormholeKey>,
appid: AppID,
/// The cryptographic verifier code for the connection
#[deprecated(since = "0.7.0", note = "Use the verifier() method")]
pub verifier: Box<secretbox::Key>,
/// Our app version
#[deprecated(since = "0.7.0", note = "Use the our_version() method")]
pub our_version: Box<dyn std::any::Any + Send + Sync>,
/// The app version of the peer
#[deprecated(since = "0.7.0", note = "Use the peer_version() method")]
pub peer_version: serde_json::Value,
}
impl Wormhole {
/**
* Generate a code and connect to the rendezvous server.
*
* # Returns
*
* A tuple with a [`WormholeWelcome`] and a [`std::future::Future`] that will
* do the rest of the client-client handshake and yield the [`Wormhole`] object
* on success.
*/
#[deprecated(
since = "0.7.0",
note = "please use 'MailboxConnection::create(..) and Wormhole::connect(mailbox_connection)' instead"
)]
#[allow(deprecated)]
pub async fn connect_without_code(
config: AppConfig<impl serde::Serialize + Send + Sync + 'static>,
code_length: usize,
) -> Result<
(
WormholeWelcome,
impl std::future::Future<Output = Result<Self, WormholeError>>,
),
WormholeError,
> {
let mailbox_connection = MailboxConnection::create(config, code_length).await?;
Ok((
WormholeWelcome {
welcome: mailbox_connection.welcome.clone(),
code: mailbox_connection.code.clone(),
},
Self::connect(mailbox_connection),
))
}
/**
* Connect to a peer with a code.
*/
#[deprecated(
since = "0.7.0",
note = "please use 'MailboxConnection::connect(..) and Wormhole::connect(mailbox_connection)' instead"
)]
#[allow(deprecated)]
pub async fn connect_with_code(
config: AppConfig<impl serde::Serialize + Send + Sync + 'static>,
code: Code,
) -> Result<(WormholeWelcome, Self), WormholeError> {
let mailbox_connection = MailboxConnection::connect(config, code.clone(), true).await?;
Ok((
WormholeWelcome {
welcome: mailbox_connection.welcome.clone(),
code,
},
Self::connect(mailbox_connection).await?,
))
}
/// Set up a Wormhole which is the client-client part of the connection setup
///
/// The MailboxConnection already contains a rendezvous server with an opened mailbox.
pub async fn connect(
mailbox_connection: MailboxConnection<impl serde::Serialize + Send + Sync + 'static>,
) -> Result<Self, WormholeError> {
let MailboxConnection {
config,
mut server,
mailbox: _mailbox,
code,
welcome: _welcome,
} = mailbox_connection;
/* Send PAKE */
let (pake_state, pake_msg_ser) = key::make_pake(code.as_ref(), &config.id);
server.send_peer_message(Phase::PAKE, pake_msg_ser).await?;
/* Receive PAKE */
let peer_pake = key::extract_pake_msg(&server.next_peer_message_some().await?.body)?;
let key = pake_state
.finish(&peer_pake)
.map_err(|_| WormholeError::PakeFailed)
.map(|key| *secretbox::Key::from_slice(&key))?;
/* Send versions message */
let mut versions = key::VersionsMessage::new();
versions.set_app_versions(serde_json::to_value(&config.app_version).unwrap());
let (version_phase, version_msg) = key::build_version_msg(server.side(), &key, &versions);
server.send_peer_message(version_phase, version_msg).await?;
let peer_version = server.next_peer_message_some().await?;
/* Handle received message */
let versions: key::VersionsMessage = peer_version
.decrypt(&key)
.ok_or(WormholeError::PakeFailed)
.and_then(|plaintext| {
serde_json::from_slice(&plaintext).map_err(WormholeError::ProtocolJson)
})?;
let peer_version = versions.app_versions;
if server.needs_nameplate_release() {
server.release_nameplate().await?;
}
log::info!("Found peer on the rendezvous server.");
/* We are now fully initialized! Up and running! :tada: */
#[allow(deprecated)]
Ok(Self {
server,
appid: config.id,
phase: 0,
key: key::Key::new(key.into()),
verifier: Box::new(key::derive_verifier(&key)),
our_version: Box::new(config.app_version),
peer_version,
})
}
/** Send an encrypted message to peer */
pub async fn send(&mut self, plaintext: Vec<u8>) -> Result<(), WormholeError> {
let phase_string = Phase::numeric(self.phase);
self.phase += 1;
let data_key = key::derive_phase_key(self.server.side(), &self.key, &phase_string);
let (_nonce, encrypted) = key::encrypt_data(&data_key, &plaintext);
self.server
.send_peer_message(phase_string, encrypted)
.await?;
Ok(())
}
/**
* Serialize and send an encrypted message to peer
*
* This will serialize the message as `json` string, which is most commonly
* used by upper layer protocols. The serialization may not fail
*
* ## Panics
*
* If the serialization fails
*/
pub async fn send_json<T: serde::Serialize>(
&mut self,
message: &T,
) -> Result<(), WormholeError> {
self.send(serde_json::to_vec(message).unwrap()).await
}
/** Receive an encrypted message from peer */
pub async fn receive(&mut self) -> Result<Vec<u8>, WormholeError> {
loop {
let peer_message = match self.server.next_peer_message().await? {
Some(peer_message) => peer_message,
None => continue,
};
if peer_message.phase.to_num().is_none() {
// TODO: log and ignore, for future expansion
todo!("log and ignore, for future expansion");
}
// TODO maybe reorder incoming messages by phase numeral?
let decrypted_message = peer_message
.decrypt(&self.key)
.ok_or(WormholeError::Crypto)?;
// Send to client
return Ok(decrypted_message);
}
}
/**
* Receive an encrypted message from peer
*
* This will deserialize the message as `json` string, which is most commonly
* used by upper layer protocols. We distinguish between the different layers
* on which a serialization error happened, hence the double `Result`.
*/
pub async fn receive_json<T>(&mut self) -> Result<Result<T, serde_json::Error>, WormholeError>
where
T: for<'a> serde::Deserialize<'a>,
{
self.receive().await.map(|data: Vec<u8>| {
serde_json::from_slice(&data).map_err(|e| {
log::error!(
"Received invalid data from peer: '{}'",
String::from_utf8_lossy(&data)
);
e
})
})
}
/// Close the wormhole
pub async fn close(self) -> Result<(), WormholeError> {
log::debug!("Closing Wormhole…");
self.server.shutdown(Mood::Happy).await.map_err(Into::into)
}
/**
* The `AppID` this wormhole is bound to.
* This determines the upper-layer protocol. Only wormholes with the same value can talk to each other.
*/
pub fn appid(&self) -> &AppID {
&self.appid
}
/**
* The symmetric encryption key used by this connection.
* Can be used to derive sub-keys for different purposes.
*/
pub fn key(&self) -> &key::Key<key::WormholeKey> {
&self.key
}
/**
* If you're paranoid, let both sides check that they calculated the same verifier.
*
* PAKE hardens a standard key exchange with a password ("password authenticated") in order
* to mitigate potential man in the middle attacks that would otherwise be possible. Since
* the passwords usually are not of hight entropy, there is a low-probability possible of
* an attacker guessing the password correctly, enabling them to MitM the connection.
*
* Not only is that probability low, but they also have only one try per connection and a failed
* attempts will be noticed by both sides. Nevertheless, comparing the verifier mitigates that
* attack vector.
*/
pub fn verifier(&self) -> &secretbox::Key {
#[allow(deprecated)]
&self.verifier
}
/**
* Our "app version" information that we sent. See the [`peer_version`](Self::peer_version()) for more information.
*/
pub fn our_version(&self) -> &(dyn std::any::Any + Send + Sync) {
#[allow(deprecated)]
&self.our_version
}
/**
* Protocol version information from the other side.
* This is bound by the [`AppID`]'s protocol and thus shall be handled on a higher level
* (e.g. by the file transfer API).
*/
pub fn peer_version(&self) -> &serde_json::Value {
#[allow(deprecated)]
&self.peer_version
}
}
/// The close command accepts an optional "mood" string: this allows clients to tell the server
/// (in general terms) about their experiences with the wormhole interaction. The server records
/// the mood in its "usage" record, so the server operator can get a sense of how many connections
/// are succeeding and failing. The moods currently recognized by the Mailbox server are:
#[derive(Debug, PartialEq, Copy, Clone, Deserialize, Serialize, derive_more::Display)]
pub enum Mood {
/// The PAKE key-establishment worked, and the client saw at least one valid encrypted message from its peer
#[serde(rename = "happy")]
Happy,
/// The client gave up without hearing anything from its peer
#[serde(rename = "lonely")]
Lonely,
/// The client encountered some other error: protocol problem or internal error
#[serde(rename = "errory")]
Errory,
/// The client saw an invalid encrypted message from its peer,
/// indicating that either the wormhole code was typed in wrong,
/// or an attacker tried (and failed) to guess the code
#[serde(rename = "scary")]
Scared,
/// Clients are not welcome on the server right now
#[serde(rename = "unwelcome")]
Unwelcome,
}
/**
* Wormhole configuration corresponding to an uppler layer protocol
*
* There are multiple different protocols built on top of the core
* Wormhole protocol. They are identified by a unique URI-like ID string
* (`AppID`), an URL to find the rendezvous server (might be shared among
* multiple protocols), and client implementations also have a "version"
* data to do protocol negotiation.
*
* See [`crate::transfer::APP_CONFIG`].
*/
#[derive(PartialEq, Eq, Clone, Debug)]
pub struct AppConfig<V> {
/// The ID of the used application
pub id: AppID,
/// The URL of the rendezvous server
pub rendezvous_url: Cow<'static, str>,
/// The client application version
pub app_version: V,
}
impl<V> AppConfig<V> {
/// Set the app id
pub fn id(mut self, id: AppID) -> Self {
self.id = id;
self
}
/// Set the rendezvous URL
pub fn rendezvous_url(mut self, rendezvous_url: Cow<'static, str>) -> Self {
self.rendezvous_url = rendezvous_url;
self
}
}
impl<V: serde::Serialize> AppConfig<V> {
/// Set the app version
pub fn app_version(mut self, app_version: V) -> Self {
self.app_version = app_version;
self
}
}
/// Newtype wrapper for application IDs
///
/// The application ID is a string that scopes all commands
/// to that name, effectively separating different protocols
/// on the same rendezvous server.
#[derive(
PartialEq, Eq, Clone, Debug, Deserialize, Serialize, derive_more::Display, derive_more::Deref,
)]
#[deref(forward)]
pub struct AppID(
#[deref]
#[deprecated(since = "0.7.0", note = "use the AsRef<str> implementation")]
pub Cow<'static, str>,
);
impl AppID {
/// Create a new app ID from an ID string
pub fn new(id: impl Into<Cow<'static, str>>) -> Self {
AppID(id.into())
}
}
impl From<String> for AppID {
fn from(s: String) -> Self {
Self::new(s)
}
}
impl AsRef<str> for AppID {
fn as_ref(&self) -> &str {
&self.0
}
}
// MySide is used for the String that we send in all our outbound messages
#[derive(
PartialEq, Eq, Clone, Debug, Deserialize, Serialize, derive_more::Display, derive_more::Deref,
)]
#[serde(transparent)]
#[display(fmt = "MySide({})", "&*_0")]
#[deprecated(
since = "0.7.0",
note = "This will be a private type in the future. Open an issue if you require access to protocol intrinsics in the future"
)]
pub struct MySide(EitherSide);
impl MySide {
pub fn generate() -> MySide {
use rand::{rngs::OsRng, RngCore};
let mut bytes: [u8; 5] = [0; 5];
OsRng.fill_bytes(&mut bytes);
MySide(EitherSide(hex::encode(bytes)))
}
// It's a minor type system feature that converting an arbitrary string into MySide is hard.
// This prevents it from getting swapped around with TheirSide.
#[cfg(test)]
pub fn unchecked_from_string(s: String) -> MySide {
MySide(EitherSide(s))
}
}
// TheirSide is used for the string that arrives inside inbound messages
#[derive(
PartialEq, Eq, Clone, Debug, Deserialize, Serialize, derive_more::Display, derive_more::Deref,
)]
#[serde(transparent)]
#[display(fmt = "TheirSide({})", "&*_0")]
#[deprecated(
since = "0.7.0",
note = "This will be a private type in the future. Open an issue if you require access to protocol intrinsics in the future"
)]
pub struct TheirSide(EitherSide);
impl<S: Into<String>> From<S> for TheirSide {
fn from(s: S) -> TheirSide {
TheirSide(EitherSide(s.into()))
}
}
#[derive(
PartialEq, Eq, Clone, Debug, Deserialize, Serialize, derive_more::Display, derive_more::Deref,
)]
#[serde(transparent)]
#[deref(forward)]
#[display(fmt = "{}", "&*_0")]
#[deprecated(
since = "0.7.0",
note = "This will be a private type in the future. Open an issue if you require access to protocol intrinsics in the future"
)]
pub struct EitherSide(pub String);
impl<S: Into<String>> From<S> for EitherSide {
fn from(s: S) -> EitherSide {
EitherSide(s.into())
}
}
#[derive(PartialEq, Eq, Clone, Debug, Hash, Deserialize, Serialize, derive_more::Display)]
#[serde(transparent)]
#[deprecated(
since = "0.7.0",
note = "This will be a private type in the future. Open an issue if you require access to protocol intrinsics in the future"
)]
pub struct Phase(Cow<'static, str>);
impl Phase {
pub const VERSION: Self = Phase(Cow::Borrowed("version"));
pub const PAKE: Self = Phase(Cow::Borrowed("pake"));
pub fn numeric(phase: u64) -> Self {
Phase(phase.to_string().into())
}
#[allow(dead_code)]
pub fn is_version(&self) -> bool {
self == &Self::VERSION
}
#[allow(dead_code)]
pub fn is_pake(&self) -> bool {
self == &Self::PAKE
}
pub fn to_num(&self) -> Option<u64> {
self.0.parse().ok()
}
}
impl AsRef<str> for Phase {
fn as_ref(&self) -> &str {
&self.0
}
}
#[derive(PartialEq, Eq, Clone, Debug, Deserialize, Serialize, derive_more::Display)]
#[serde(transparent)]
#[deprecated(
since = "0.7.0",
note = "This will be a private type in the future. Open an issue if you require access to protocol intrinsics in the future"
)]
pub struct Mailbox(pub String);
/// Wormhole codes look like 4-purple-sausages, consisting of a number followed by some random words.
/// This number is called a "Nameplate".
#[derive(
PartialEq, Eq, Clone, Debug, Deserialize, Serialize, derive_more::Display, derive_more::Deref,
)]
#[serde(transparent)]
#[deref(forward)]
#[display(fmt = "{}", _0)]
pub struct Nameplate(
#[deprecated(since = "0.7.0", note = "use the AsRef<str> implementation")] pub String,
);
#[allow(deprecated)]
impl Nameplate {
/// Create a new nameplate from a string
pub fn new(n: impl Into<String>) -> Self {
Nameplate(n.into())
}
}
#[allow(deprecated)]
impl From<Nameplate> for String {
fn from(value: Nameplate) -> Self {
value.0
}
}
#[allow(deprecated)]
impl From<String> for Nameplate {
fn from(value: String) -> Self {
Self(value)
}
}
#[allow(deprecated)]
impl AsRef<str> for Nameplate {
fn as_ref(&self) -> &str {
&self.0
}
}
/** A wormhole code à la 15-foo-bar
*
* The part until the first dash is called the "nameplate" and is purely numeric.
* The rest is the password and may be arbitrary, although dash-joining words from
* a wordlist is a common convention.
*/
#[derive(PartialEq, Eq, Clone, Debug, derive_more::Display, derive_more::Deref)]
#[display(fmt = "{}", _0)]
pub struct Code(
#[deprecated(since = "0.7.0", note = "use the AsRef<str> implementation")] pub String,
);
#[allow(deprecated)]
impl Code {
/// Create a new code, comprised of a [`Nameplate`] and a password
pub fn new(nameplate: &Nameplate, password: &str) -> Self {
Code(format!("{}-{}", nameplate, password))
}
/// Split the code into nameplate and password
pub fn split(&self) -> (Nameplate, String) {
let mut iter = self.0.splitn(2, '-');
let nameplate = Nameplate::new(iter.next().unwrap());
let password = iter.next().unwrap();
(nameplate, password.to_string())
}
/// Retrieve only the nameplate
pub fn nameplate(&self) -> Nameplate {
Nameplate::new(self.0.split('-').next().unwrap())
}
}
#[allow(deprecated)]
impl From<Code> for String {
fn from(value: Code) -> Self {
value.0
}
}
impl From<String> for Code {
fn from(value: String) -> Self {
Self(value)
}
}
#[allow(deprecated)]
impl AsRef<str> for Code {
fn as_ref(&self) -> &str {
&self.0
}
}