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
// Base58 encoding extended with HRP and mnemonic checksum information
//
// SPDX-License-Identifier: Apache-2.0
//
// Written in 2023 by
// Dr. Maxim Orlovsky <orlovsky@ubideco.org>
//
// Copyright 2023 UBIDECO Institute, Switzerland
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#![doc = include_str!("../README.md")]
use std::error::Error;
use std::fmt;
use std::fmt::{Alignment, Display, Formatter};
use base58::{FromBase58, FromBase58Error, ToBase58};
use sha2::Digest;
pub const HRI_MAX_LEN: usize = 8;
#[derive(Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Hash, Debug)]
pub enum MnemonicCase {
Pascal,
Kebab,
Snake,
}
#[derive(Clone, Ord, PartialOrd, Eq, PartialEq, Hash, Debug)]
pub struct Baid58<const LEN: usize> {
hri: &'static str,
payload: [u8; LEN],
}
impl<const LEN: usize> Baid58<LEN> {
/// # Panics
///
/// If HRI static string is longer than [`HRI_MAX_LEN`]
pub fn with(hri: &'static str, payload: [u8; LEN]) -> Self {
assert!(hri.len() <= HRI_MAX_LEN, "HRI is too long");
assert!(LEN > HRI_MAX_LEN, "Baid58 id must be at least 9 bytes");
Self { hri, payload }
}
pub const fn human_identifier(&self) -> &'static str { self.hri }
pub fn checksum(&self) -> u32 {
let key = blake3::Hasher::new().update(self.hri.as_bytes()).finalize();
let mut hasher = blake3::Hasher::new_keyed(key.as_bytes());
hasher.update(&self.payload);
let blake = *hasher.finalize().as_bytes();
let key = sha2::Sha256::digest(self.hri.as_bytes());
let mut sha = sha2::Sha256::new_with_prefix(key);
sha.update(&self.payload);
let sha = sha.finalize();
u32::from_le_bytes([blake[0], blake[1], sha[0], sha[1]])
}
pub fn mnemonic(&self) -> String { self.mnemonic_with_case(MnemonicCase::Kebab) }
pub fn mnemonic_with_case(&self, case: MnemonicCase) -> String {
let mn = mnemonic::to_string(self.checksum().to_le_bytes());
match case {
MnemonicCase::Pascal => {
let mut res = String::with_capacity(mn.len());
for s in mn.split('-') {
res.push_str((s[0..1].to_uppercase() + &s[1..]).as_str());
}
res
}
MnemonicCase::Kebab => mn,
MnemonicCase::Snake => mn.replace('-', "_"),
}
}
}
/// # Use of formatting flags:
///
/// ## HRI and checksum
///
/// The presence of human-readable identifier and checksum is controlled by precision flag and by
/// alignment flags. All the options can be combined with the mnemonic flags from the next section;
/// if a specific mnemonic flag is present than the checksum is not provided.
///
/// | Flag | HRI | Checksum | Mnemonic | Separators | Example |
/// |------|--------|-------------------|------------------------|------------|------------------------|
/// | none | absent | absent | defined by other flags | n/a | |
/// | `.N` | suffix | absent | defined by other flags | `.` | `ID.hri` |
/// | `A<` | prefix | absent | defined by other flags | `A` | `hri`A`ID` |
/// | `A^` | prefix | added<sup>*</sup> | defined by other flags | `A` | `hri`A`IDchecksum` |
/// | `A>` | suffix | added<sup>*</sup> | defined by other flags | `A` | `IDchecksum`A`hri` |
///
/// _<sup>*</sup> added if no mnemonic flags are given_
///
/// ## Mnemonic representation of the checksum
///
/// The presence and position of mnemonic is defined by alternative and sign flags:
///
/// | Flag | HRI | Checksum | Mnemonic | Separators | Example |
/// |------|--------|-------------------|------------------------|------------|------------------------|
/// | none | - | defined by HRI flags | absent | n/a | |
/// | `#` | - | - | suffix (dashed) | `#` | `ID#solo-lemur-wishes` |
/// | `0` | - | - | prefix (capitalized) | `0` | `SoloLemurWishes0ID` |
/// | `-` | - | - | prefix (dashes) | `-` | `solo-lemur-wishes-ID` |
/// | `+` | - | - | prefix (underscored) | `_` | `solo_lemur_wishes_ID` |
impl<const LEN: usize> Display for Baid58<LEN> {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
#[derive(Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Hash, Debug)]
enum Mnemo {
None,
Prefix(MnemonicCase),
Suffix,
Mixin,
}
#[derive(Clone, Ord, PartialOrd, Eq, PartialEq, Hash, Debug)]
enum Hrp {
None,
Prefix(String),
Suffix(String),
Ext,
}
let mut mnemo = if f.alternate() {
Mnemo::Suffix
} else if f.sign_aware_zero_pad() {
Mnemo::Prefix(MnemonicCase::Pascal)
} else if f.sign_minus() {
Mnemo::Prefix(MnemonicCase::Kebab)
} else if f.sign_plus() {
Mnemo::Prefix(MnemonicCase::Snake)
} else {
Mnemo::None
};
let fill = (0..=f.width().unwrap_or_default()).map(|_| f.fill()).collect();
let hrp = match f.align() {
None if f.precision().is_some() => Hrp::Ext,
None => Hrp::None,
Some(Alignment::Center) if mnemo == Mnemo::None => {
mnemo = Mnemo::Mixin;
Hrp::Prefix(fill)
}
Some(Alignment::Left) | Some(Alignment::Center) => Hrp::Prefix(fill),
Some(Alignment::Right) => {
mnemo = Mnemo::Mixin;
Hrp::Suffix(fill)
}
};
if let Hrp::Prefix(ref prefix) = hrp {
f.write_str(self.hri)?;
f.write_str(prefix)?;
}
if let Mnemo::Prefix(prefix) = mnemo {
f.write_str(&self.clone().mnemonic_with_case(prefix))?;
match prefix {
MnemonicCase::Pascal => f.write_str("0")?,
MnemonicCase::Kebab => f.write_str("-")?,
MnemonicCase::Snake => f.write_str("_")?,
}
}
if mnemo == Mnemo::Mixin {
let mut p = self.payload.to_vec();
p.extend(self.checksum().to_le_bytes());
f.write_str(&p.to_base58())?;
} else {
f.write_str(&self.payload.to_base58())?;
};
if let Mnemo::Suffix = mnemo {
write!(f, "#{}", &self.clone().mnemonic_with_case(MnemonicCase::Kebab))?;
}
if let Hrp::Suffix(ref suffix) = hrp {
f.write_str(suffix)?;
f.write_str(self.hri)?;
} else if let Hrp::Ext = hrp {
write!(f, ".{}", self.hri)?;
}
Ok(())
}
}
#[derive(Clone, Eq, PartialEq, Hash, Debug, Ord, PartialOrd)]
pub enum Baid58ParseError {
InvalidHri {
expected: &'static str,
found: String,
},
InvalidLen {
expected: usize,
found: usize,
},
InvalidMnemonic(String),
InvalidChecksumLen(usize),
ChecksumMismatch {
expected: u32,
present: u32,
},
ValueTooShort(usize),
NonValueTooLong(usize),
ValueAbsent(String),
/// The input contained a character which is not a part of the base58 format.
InvalidBase58Character(char, usize),
/// The input had invalid length.
InvalidBase58Length,
Unparsable(String),
}
impl From<FromBase58Error> for Baid58ParseError {
fn from(value: FromBase58Error) -> Self {
match value {
FromBase58Error::InvalidBase58Character(c, pos) => {
Baid58ParseError::InvalidBase58Character(c, pos)
}
FromBase58Error::InvalidBase58Length => Baid58ParseError::InvalidBase58Length,
}
}
}
impl Display for Baid58ParseError {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
match self {
Baid58ParseError::InvalidHri { expected, found } => write!(
f,
"type requires '{expected}' as a Baid58 human-readable identifier, while \
'{found}' was provided"
),
Baid58ParseError::InvalidLen { expected, found } => write!(
f,
"type requires {expected} data bytes for aa Baid58 representation, while \
'{found}' was provided"
),
Baid58ParseError::ValueTooShort(len) => write!(
f,
"Baid58 value must be longer than 8 characters, while only {len} chars were used \
for the value"
),
Baid58ParseError::NonValueTooLong(len) => write!(
f,
"at least one of non-value components in Baid58 string has length {len} which is \
more than allowed 8 characters"
),
Baid58ParseError::ValueAbsent(s) => {
write!(f, "Baid58 string {s} has no identifiable value component")
}
Baid58ParseError::InvalidBase58Character(c, pos) => {
write!(f, "invalid Base58 character '{c}' at {pos} position in Baid58 value")
}
Baid58ParseError::InvalidBase58Length => {
f.write_str("invalid length of the Base58 encoded value")
}
Baid58ParseError::Unparsable(s) => write!(f, "non-parsable Baid58 string '{s}'"),
Baid58ParseError::InvalidMnemonic(m) => {
write!(f, "invalid Baid58 mnemonic string '{m}'")
}
Baid58ParseError::ChecksumMismatch { expected, present } => {
write!(f, "invalid Baid58 checksum: expected {expected:#x}, found {present:#x}")
}
Baid58ParseError::InvalidChecksumLen(len) => {
write!(f, "invalid Baid58 checksum length: expected 4 bytes while found {len}")
}
}
}
}
impl Error for Baid58ParseError {}
#[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)]
pub struct Baid58HriError {
pub expected: &'static str,
pub found: &'static str,
}
impl Display for Baid58HriError {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
let Baid58HriError { expected, found } = self;
write!(
f,
"type requires '{expected}' as a Baid58 human-readable identifier, while '{found}' \
was provided"
)
}
}
impl Error for Baid58HriError {}
pub trait FromBaid58<const LEN: usize>: ToBaid58<LEN> + From<[u8; LEN]> {
/// # Format of the string
///
/// The string may contain up to three components: HRI, main value and checksum. Either HRI and
/// checksum - or both - can be omitted. The components are separated with any non-alphanumeric
/// printable ASCII character or by `0` (*component separators*); up to two component separators
/// may be present and they may differ.
///
/// Checksum is always composed of exactly three words, separated by the same non-alphanumeric
/// printable ASCII character (*checksum separator*). Checksum separator may be the same as
/// component separator - or may be different. All checksum words must be pure alphabetic ASCII
/// characters.
///
/// Checksum words and HRI are case-incentive, while main value (as Base58) is case-sensitive.
/// HRI and may contain non-BASE58 characters 'I' and 'l'. These characters can't be used as any
/// of the separators.
///
/// HRI and each of the checksum words must be no longer than 8 letters. HRI must be even a
/// single letter; each of checksum words must contain at least 4 letters. Value component must
/// be at least 9 characters long.
///
/// HRI, if present, is always the first or the last component.
///
/// The string is parsed using these heuristics. Before processing all repeated
/// non-alphanumerics are filtered out.
fn from_baid58_str(s: &str) -> Result<Self, Baid58ParseError> {
let mut prev: Option<char> = None;
let mut count = 0;
// Remove repeated separator characters
let filtered = s
.chars()
.filter_map(|c| {
let is_separator = !c.is_ascii_alphanumeric() || c == '0';
if is_separator {
count += 1;
}
if Some(c) == prev && is_separator {
None
} else {
prev = Some(c);
prev
}
})
.collect::<String>();
let mut payload: Option<[u8; LEN]> = None;
let mut prefix = vec![];
let mut suffix = vec![];
let mut cursor = &mut prefix;
let mut checksum: Option<u32> = None;
for component in filtered.split(|c: char| !c.is_ascii_alphanumeric() || c == '0') {
if component.len() > LEN {
// this is a value
if payload.is_some() {
return Err(Baid58ParseError::NonValueTooLong(component.len()));
}
let value = component.from_base58()?;
let len = value.len();
match len {
x if x == LEN => {}
x if x == LEN + 4 => {
let mut c = [0u8; 4];
c.copy_from_slice(&value[LEN..]);
checksum = Some(u32::from_le_bytes(c));
}
_ => {
return Err(Baid58ParseError::InvalidLen {
expected: LEN,
found: len,
})
}
}
payload = Some([0u8; LEN]);
if let Some(p) = payload.as_mut() {
p.copy_from_slice(&value[..LEN])
}
cursor = &mut suffix;
} else if count == 0 {
return Err(Baid58ParseError::ValueTooShort(component.len()));
} else {
cursor.push(component)
}
}
let mut hri: Option<&str> = None;
let mut mnemonic = vec![];
match (prefix.len(), suffix.len()) {
(0, 0) => {}
(3 | 4, 0) => {
hri = prefix.first().copied();
mnemonic.extend(&prefix[1..])
}
(0, 3 | 4) => {
mnemonic.extend(&suffix[..3]);
hri = suffix.get(4).copied();
}
(2, 0) => {
hri = Some(prefix[0]);
mnemonic.push(prefix[1]);
}
(1, 0) if prefix[0].len() > HRI_MAX_LEN => {
mnemonic.extend(prefix);
}
(1, 0 | 3..) => {
hri = prefix.pop();
mnemonic.extend(suffix);
}
(0 | 3.., 1) => {
mnemonic.extend(prefix);
hri = suffix.pop();
}
_ => return Err(Baid58ParseError::Unparsable(s.to_owned())),
}
if matches!(hri, Some(hri) if hri != Self::HRI) {
return Err(Baid58ParseError::InvalidHri {
expected: Self::HRI,
found: hri.unwrap().to_owned(),
});
}
let baid58 = Baid58 {
hri: Self::HRI,
payload: payload.ok_or(Baid58ParseError::ValueAbsent(s.to_owned()))?,
};
let mnemonic = match mnemonic.len() {
0 => String::new(),
3 => mnemonic.join("-"),
1 if mnemonic[0].contains('-') => mnemonic[0].to_string(),
1 if mnemonic[0].contains('_') => mnemonic[0].replace('-', "_"),
1 => mnemonic[0]
.chars()
.flat_map(|c| {
if c.is_ascii_uppercase() {
vec!['-', c.to_ascii_lowercase()].into_iter()
} else {
vec![c].into_iter()
}
})
.collect(),
_ => return Err(Baid58ParseError::InvalidMnemonic(mnemonic.join("-"))),
};
if !mnemonic.is_empty() {
let mut checksum = Vec::<u8>::with_capacity(4);
mnemonic::decode(&mnemonic, &mut checksum)
.map_err(|_| Baid58ParseError::InvalidMnemonic(mnemonic))?;
if checksum.len() != 4 {
return Err(Baid58ParseError::InvalidChecksumLen(checksum.len()));
}
let checksum = u32::from_le_bytes([checksum[0], checksum[1], checksum[2], checksum[3]]);
if baid58.checksum() != checksum {
return Err(Baid58ParseError::ChecksumMismatch {
expected: baid58.checksum(),
present: checksum,
});
}
}
if let Some(checksum) = checksum {
if baid58.checksum() != checksum {
return Err(Baid58ParseError::ChecksumMismatch {
expected: baid58.checksum(),
present: checksum,
});
}
}
Ok(Self::from_baid58(baid58).expect("HRI is checked"))
}
fn from_baid58(baid: Baid58<LEN>) -> Result<Self, Baid58HriError> {
if baid.hri != Self::HRI {
Err(Baid58HriError {
expected: Self::HRI,
found: baid.hri,
})
} else {
Ok(Self::from(baid.payload))
}
}
}
pub trait ToBaid58<const LEN: usize> {
const HRI: &'static str;
// TODO: Uncomment once generic_const_exprs is out
// const LEN: usize;
fn to_baid58_payload(&self) -> [u8; LEN];
fn to_baid58(&self) -> Baid58<LEN> { Baid58::with(Self::HRI, self.to_baid58_payload()) }
fn to_baid58_string(&self) -> String { self.to_baid58().to_string() }
}
#[cfg(test)]
mod test {
use std::str::FromStr;
use super::*;
#[derive(Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Hash, Debug)]
struct Id([u8; 32]);
impl Id {
pub fn new(s: &str) -> Id {
let hash = blake3::Hasher::new().update(s.as_bytes()).finalize();
Id(*hash.as_bytes())
}
}
impl From<[u8; 32]> for Id {
fn from(value: [u8; 32]) -> Self { Id(value) }
}
impl ToBaid58<32> for Id {
const HRI: &'static str = "id";
fn to_baid58_payload(&self) -> [u8; 32] { self.0 }
}
impl FromBaid58<32> for Id {}
impl Display for Id {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { Display::fmt(&self.to_baid58(), f) }
}
impl FromStr for Id {
type Err = Baid58ParseError;
fn from_str(s: &str) -> Result<Self, Self::Err> { Id::from_baid58_str(s) }
}
#[test]
fn display() {
let id = Id::new("some information");
assert_eq!(&format!("{id}"), "FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs");
assert_eq!(&format!("{id::<}"), "id:FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs");
assert_eq!(&format!("{id::^}"), "id:2dzcCoX9c65gi1GoJ1LFzb5FcQ9pAc8o3Pj8TpcH2mkAdMLCpP");
assert_eq!(
&format!("{id:#}"),
"FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs#escape-cadet-swim"
);
assert_eq!(&format!("{id:.1}"), "FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs.id");
assert_eq!(
&format!("{id::^#}"),
"id:FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs#escape-cadet-swim"
);
assert_eq!(
&format!("{id:-.1}"),
"escape-cadet-swim-FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs.id"
);
assert_eq!(
&format!("{id:<0}"),
"id EscapeCadetSwim0FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs"
);
assert_eq!(
&format!("{id:_<+}"),
"id_escape_cadet_swim_FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs"
);
}
#[test]
fn from_str() {
let id = Id::new("some information");
assert_eq!(Id::from_str("FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs").unwrap(), id);
assert_eq!(Id::from_str("2dzcCoX9c65gi1GoJ1LFzb5FcQ9pAc8o3Pj8TpcH2mkAdMLCpP").unwrap(), id);
assert_eq!(
Id::from_str("id:2dzcCoX9c65gi1GoJ1LFzb5FcQ9pAc8o3Pj8TpcH2mkAdMLCpP").unwrap(),
id
);
assert_eq!(
Id::from_str("FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs#escape-cadet-swim").unwrap(),
id
);
assert_eq!(Id::from_str("FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs.id").unwrap(), id);
assert_eq!(
Id::from_str("id:FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs#escape-cadet-swim")
.unwrap(),
id
);
assert_eq!(
Id::from_str("escape-cadet-swim-FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs.id")
.unwrap(),
id
);
assert_eq!(
Id::from_str("EscapeCadetSwim0FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs").unwrap(),
id
);
assert_eq!(
Id::from_str("id EscapeCadetSwim0FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs")
.unwrap(),
id
);
assert_eq!(
Id::from_str("id_escape_cadet_swim_FWyisKGdBG31ddiNaUjnHi6tW8eYvnVW3T4zWtLhRDHs")
.unwrap(),
id
);
}
#[test]
#[ignore]
fn attack() {
use std::sync::{Arc, Mutex};
let id = Id::new("some information");
let mut handles = vec![];
let failures = Arc::new(Mutex::new(vec![]));
for x in 0..24 {
let f = failures.clone();
handles.push(std::thread::spawn(move || {
let id = id.to_baid58();
for salt in 0..0x4000000 {
let av = Id::new(&format!("attack using salt {x} {salt}")).to_baid58();
if id.checksum() == av.checksum() {
f.lock()
.unwrap()
.push(format!("successful bruteforce attack on round {salt:#x}"));
}
}
}));
}
for handle in handles {
handle.join().ok();
}
assert!(failures.lock().unwrap().is_empty(), "Attacks succeeded:\n{failures:#?}");
}
}
// Two hashes, 16 bits:
// 0xce6 + 0xee4 + 0x1ad7 + 0x169a + 0x1b15 + 0x1634 + 0x3861 + 0x3d1a + 0x3bf3 + 0x50c3 + 0x7dcd +
// 0xab0c + 0xb58f + 0xac76 + 0xea00 + 0xcfdd + 0x1174e + 0x11a8a + 0x119f7 + 0x1a08e + 0x1e0e8 +
// 0x1d4dd + 0x2e9bc + 0x32316
// Avg: 0xDA2E
// One hash, 16 bits:
// 0x399 + 0x907 + 0x10d4 + 0x1924 + 0x41ea + 0x670f + 0x7651 + 0x704c + 0x5e14 + 0x69f6 + 0x6bf6 +
// 0xbdb4 + 0xa18d + 0xa2cb + 0xe189 + 0x12c3b + 0x1840a + 0x1aaf3 + 0x1b9af + 0x191f4 + 0x1bec5 +
// 0x2c04b + 0x401d7 + 0x5ab15
// Avg: 0x1275B
// Two hashes, 24 bits:
// 0x797b3 + 0x9dff5 + 0x1b32e3 + 0x4839f8 + 0x5a60e1 + 0x8c114d + 0x99d3c2 + 0x9c253f + 0xaeb79f +
// 0xb1ad32 + 0xb4b454 + 0xc04c86 + 0xcb45ae + 0xd02170 + 0xda76ca + 0xe2caca + 0x1051a90 +
// 0x1067210 + 0x11b4e06 + 0x123e239 + 0x12dfa39 + 0x14bfc08 + 0x15e84d4 + 0x175c9a0 + 0x189f99b +
// 0x1942417 + 0x1b56b73 + 0x1b3ae84 + 0x1be9dbd + 0x1e78d54 + 0x1fc9fd0 + 0x201a7d2 + 0x202f210 +
// 0x20a0c84 + 0x21beb72 + 0x223e1c6 + 0x2377a9d + 0x23d0d29 + 0x242387d + 0x24733c9 + 0x253bf88 +
// 0x26922d0 + 0x269a164 + 0x2685278 + 0x26724cc + 0x27d41a4 + 0x27aa27a + 0x28349a9 + 0x288692e +
// 0x29b49c8 + 0x2a8ae22 + 0x2a753ac + 0x2aebd1e + 0x2a74338 + 0x2ba5730 + 0x2c73e8b + 0x2dbd2f3 +
// 0x2d27825 + 0x2df7c4e + 0x313bb3c + 0x308b47d + 0x312ea5a + 0x3199629 + 0x31baa54 + 0x325d602 +
// 0x3372ed4 + 0x339431f + 0x33e2bf9 + 0x3851677 + 0x38b882b + 0x3d7e406
// 0x8A3A95FF / 71 = 0x1'F2'67'12
// One hash, 24 bits:
// 0x10ebbf + 0x24c0d7 + 0x3482eb + 0x42a67d + 0x5267c9 + 0x5e3e35 + 0x61dfc0 + 0x7e00d9 + 0x73f791
// + 0x7fff0f + 0x98b23e + 0xa6b60c + 0xb8e6ee + 0xaea505 + 0xe87274 + 0x14ba442 + 0x1830eb5 +
// 0x1ad4fc6 + 0x1c60c47 + 0x2455ecc + 0x2d1ee9c + 0x2d69ebc + 0x35fb073 + 0x394e680
// 0x1BE54C01 / 24 = 0x1'29'8D'D5