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
//! Provides a private identity of a Bitmessage message sender
//! and a public identity of a Bitmessage message receiver.

use std::{
    convert::TryInto,
    fmt,
    sync::{
        atomic::{AtomicBool, Ordering},
        Arc,
    },
};

use crate::{
    address::{
        count_zeros, Address, Error as AddressError, Version as AddressVersion, DEFAULT_ZEROS,
        VERSION as CURRENT_ADDRESS_VERSION,
    },
    config::{default_nonce_trials_per_byte, default_payload_length_extra_bytes, Config},
    crypto::{KeyPair, PrivateKey, PrivateKeyError, PublicKey},
    hash::{ripemd160_sha512, sha512},
    io::WriteTo,
    pow::{NonceTrialsPerByte, PayloadLengthExtraBytes},
    stream::{StreamNumber, ROOT as ROOT_STREAM},
    var_type::VarInt,
};

pub use crate::feature::Features;

/// A public identity of a Bitmessage message receiver.
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
pub struct Public {
    version: AddressVersion,
    stream: StreamNumber,

    features: Features,
    public_signing_key: PublicKey,
    public_encryption_key: PublicKey,
    nonce_trials_per_byte: NonceTrialsPerByte,
    payload_length_extra_bytes: PayloadLengthExtraBytes,
}

impl fmt::Display for Public {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        self.address().fmt(f)
    }
}

impl Public {
    /// Creates a public identity.
    pub fn new(
        version: AddressVersion,
        stream: StreamNumber,
        features: Features,
        public_signing_key: PublicKey,
        public_encryption_key: PublicKey,
        nonce_trials_per_byte: NonceTrialsPerByte,
        payload_length_extra_bytes: PayloadLengthExtraBytes,
    ) -> Result<Self, AddressError> {
        let _address = Address::from_public_keys(
            version,
            stream,
            &public_signing_key,
            &public_encryption_key,
        )?;
        Ok(Self {
            version,
            stream,
            features,
            public_signing_key,
            public_encryption_key,
            nonce_trials_per_byte,
            payload_length_extra_bytes,
        })
    }

    /// Returns the address
    pub fn address(&self) -> Address {
        Address::from_public_keys(
            self.version,
            self.stream,
            &self.public_signing_key,
            &self.public_encryption_key,
        )
        .unwrap()
    }

    /// Returns the address version.
    pub fn version(&self) -> AddressVersion {
        self.version
    }

    /// Returns the stream number.
    pub fn stream(&self) -> StreamNumber {
        self.stream
    }

    /// Returns the features.
    pub fn features(&self) -> Features {
        self.features
    }

    /// Returns the public signing key.
    pub fn public_signing_key(&self) -> &PublicKey {
        &self.public_signing_key
    }

    /// Returns the public encryption key.
    pub fn public_encryption_key(&self) -> &PublicKey {
        &self.public_encryption_key
    }

    /// Returns the nonce trials per byte.
    pub fn nonce_trials_per_byte(&self) -> NonceTrialsPerByte {
        self.nonce_trials_per_byte
    }

    /// Returns the payload length extra bytes.
    pub fn payload_length_extra_bytes(&self) -> PayloadLengthExtraBytes {
        self.payload_length_extra_bytes
    }
}

/// A private identity of a Bitmessage message sender.
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
pub struct Private {
    version: AddressVersion,
    stream: StreamNumber,

    features: Features,
    nonce_trials_per_byte: NonceTrialsPerByte,
    payload_length_extra_bytes: PayloadLengthExtraBytes,

    private_signing_key: PrivateKey,
    private_encryption_key: PrivateKey,
    chan: bool,
}

impl fmt::Display for Private {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        self.address().fmt(f)
    }
}

impl Private {
    /// Creates a private identity.
    #[allow(clippy::too_many_arguments)]
    pub fn new(
        version: AddressVersion,
        stream: StreamNumber,
        features: Features,
        nonce_trials_per_byte: NonceTrialsPerByte,
        payload_length_extra_bytes: PayloadLengthExtraBytes,
        private_signing_key: PrivateKey,
        private_encryption_key: PrivateKey,
        chan: bool,
    ) -> Result<Self, AddressError> {
        let _address = Address::from_public_keys(
            version,
            stream,
            &private_signing_key.public_key(),
            &private_encryption_key.public_key(),
        )?;
        Ok(Self {
            version,
            stream,
            features,
            nonce_trials_per_byte,
            payload_length_extra_bytes,
            private_signing_key,
            private_encryption_key,
            chan,
        })
    }

    /// Returns the address
    pub fn address(&self) -> Address {
        Address::from_public_keys(
            self.version,
            self.stream,
            &self.public_signing_key(),
            &self.public_encryption_key(),
        )
        .unwrap()
    }

    /// Returns the address version.
    pub fn version(&self) -> AddressVersion {
        self.version
    }

    /// Returns the stream number.
    pub fn stream(&self) -> StreamNumber {
        self.stream
    }

    /// Returns the features.
    pub fn features(&self) -> Features {
        self.features
    }

    /// Returns the nonce trials per byte.
    pub fn nonce_trials_per_byte(&self) -> NonceTrialsPerByte {
        self.nonce_trials_per_byte
    }

    /// Returns the payload length extra bytes.
    pub fn payload_length_extra_bytes(&self) -> PayloadLengthExtraBytes {
        self.payload_length_extra_bytes
    }

    /// Returns the private signing key.
    pub fn private_signing_key(&self) -> &PrivateKey {
        &self.private_signing_key
    }

    /// Returns the private encryption key.
    pub fn private_encryption_key(&self) -> &PrivateKey {
        &self.private_encryption_key
    }

    /// Returns true if this is chan identity.
    pub fn chan(&self) -> bool {
        self.chan
    }

    /// Returns the public signing key.
    pub fn public_signing_key(&self) -> PublicKey {
        self.private_signing_key.public_key()
    }

    /// Returns the public encryption key.
    pub fn public_encryption_key(&self) -> PublicKey {
        self.private_encryption_key.public_key()
    }

    /// Returns a random identity builder.
    pub fn random_builder() -> RandomBuilder {
        RandomBuilder::new()
    }

    /// Returns a deterministic identity builder.
    pub fn deterministic_builder(password: Vec<u8>) -> DeterministicBuilder {
        DeterministicBuilder::new(password)
    }

    /// Returns a chan identity builder.
    pub fn chan_builder(password: Vec<u8>) -> ChanBuilder {
        ChanBuilder::new(password)
    }
}

impl From<&Private> for Public {
    fn from(v: &Private) -> Public {
        Self {
            version: v.version,
            stream: v.stream,
            features: v.features,
            public_signing_key: v.public_signing_key(),
            public_encryption_key: v.public_encryption_key(),
            nonce_trials_per_byte: v.nonce_trials_per_byte,
            payload_length_extra_bytes: v.payload_length_extra_bytes,
        }
    }
}

/// An identity of a Bitmessage user.
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
pub enum Identity {
    /// A Bitmessage address.
    Address(Address),
    /// A public identity.
    Public(Public),
    /// A private identity.
    Private(Private),
}

impl fmt::Display for Identity {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        self.address().fmt(f)
    }
}

impl Identity {
    /// Returns the address.
    pub fn address(&self) -> Address {
        match self {
            Identity::Address(address) => address.clone(),
            Identity::Public(public) => public.address(),
            Identity::Private(private) => private.address(),
        }
    }
}

/// An error which can be returned when processing an identity.
#[derive(Clone, Debug)]
pub enum Error {
    /// Indicates that construction of an address from public keys failed.
    AddressError(AddressError),
    /// Indicates that the operation was canceled.
    Canceled,
    /// Indicates that the operation on a private key failed.
    PrivateKeyError(PrivateKeyError),
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::AddressError(err) => err.fmt(f),
            Self::Canceled => "canceled".fmt(f),
            Self::PrivateKeyError(err) => err.fmt(f),
        }
    }
}

impl std::error::Error for Error {}

impl From<AddressError> for Error {
    fn from(err: AddressError) -> Self {
        Self::AddressError(err)
    }
}

impl From<PrivateKeyError> for Error {
    fn from(err: PrivateKeyError) -> Self {
        Self::PrivateKeyError(err)
    }
}

/// A builder for building a random identity.
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
pub struct RandomBuilder {
    version: AddressVersion,
    stream: StreamNumber,
    zeros: usize,
    features: Features,
    nonce_trials_per_byte: NonceTrialsPerByte,
    payload_length_extra_bytes: PayloadLengthExtraBytes,
}

impl Default for RandomBuilder {
    fn default() -> Self {
        Self {
            version: CURRENT_ADDRESS_VERSION,
            stream: ROOT_STREAM,
            zeros: DEFAULT_ZEROS,
            features: Features::DOES_ACK,
            nonce_trials_per_byte: default_nonce_trials_per_byte(),
            payload_length_extra_bytes: default_payload_length_extra_bytes(),
        }
    }
}

impl RandomBuilder {
    fn new() -> Self {
        Self::default()
    }

    /// A shortcut to set parameters from a config object.
    pub fn config(&mut self, v: &Config) -> &mut Self {
        self.nonce_trials_per_byte(v.nonce_trials_per_byte())
            .payload_length_extra_bytes(v.payload_length_extra_bytes())
    }

    /// Sets the address version.
    pub fn version(&mut self, v: AddressVersion) -> &mut Self {
        self.version = v;
        self
    }

    /// Sets the stream number.
    pub fn stream(&mut self, v: StreamNumber) -> &mut Self {
        self.stream = v;
        self
    }

    /// Sets the minimum count of leading zeros in the hash of the public keys.
    pub fn zeros(&mut self, v: usize) -> &mut Self {
        self.zeros = v;
        self
    }

    /// Sets the features.
    pub fn features(&mut self, v: Features) -> &mut Self {
        self.features = v;
        self
    }

    /// Sets the nonce trials per byte.
    pub fn nonce_trials_per_byte(&mut self, v: NonceTrialsPerByte) -> &mut Self {
        self.nonce_trials_per_byte = v;
        self
    }

    /// Sets the payload length extra bytes.
    pub fn payload_length_extra_bytes(&mut self, v: PayloadLengthExtraBytes) -> &mut Self {
        self.payload_length_extra_bytes = v;
        self
    }

    /// Returns the private identity this builder represents.
    pub fn build(&self, cancel: Arc<AtomicBool>) -> Result<Private, Error> {
        let signing_key_pair = KeyPair::generate();
        let signing_public_key_bytes = signing_key_pair.public_key().encode();
        while !cancel.load(Ordering::SeqCst) {
            for _ in 0..0x1000 {
                let encryption_key_pair = KeyPair::generate();
                let mut bytes = Vec::new();
                bytes.extend_from_slice(&signing_public_key_bytes);
                bytes.append(&mut encryption_key_pair.public_key().encode());
                let hash = ripemd160_sha512(bytes);
                if count_zeros(hash) < self.zeros {
                    continue;
                }
                return Ok(Private::new(
                    self.version,
                    self.stream,
                    self.features,
                    self.nonce_trials_per_byte,
                    self.payload_length_extra_bytes,
                    signing_key_pair.private_key().clone(),
                    encryption_key_pair.private_key().clone(),
                    false,
                )?);
            }
        }
        Err(Error::Canceled)
    }
}

/// A builder for building a deterministic identity.
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
pub struct DeterministicBuilder {
    version: AddressVersion,
    stream: StreamNumber,
    zeros: usize,
    features: Features,
    nonce_trials_per_byte: NonceTrialsPerByte,
    payload_length_extra_bytes: PayloadLengthExtraBytes,
    password: Vec<u8>,
}

impl DeterministicBuilder {
    fn new(password: Vec<u8>) -> Self {
        Self {
            version: CURRENT_ADDRESS_VERSION,
            stream: ROOT_STREAM,
            zeros: DEFAULT_ZEROS,
            features: Features::DOES_ACK,
            nonce_trials_per_byte: default_nonce_trials_per_byte(),
            payload_length_extra_bytes: default_payload_length_extra_bytes(),
            password,
        }
    }

    /// A shortcut to set parameters from a config object.
    pub fn config(&mut self, v: &Config) -> &mut Self {
        self.nonce_trials_per_byte(v.nonce_trials_per_byte())
            .payload_length_extra_bytes(v.payload_length_extra_bytes())
    }

    /// Sets the address version.
    pub fn version(&mut self, v: AddressVersion) -> &mut Self {
        self.version = v;
        self
    }

    /// Sets the stream number.
    pub fn stream(&mut self, v: StreamNumber) -> &mut Self {
        self.stream = v;
        self
    }

    /// Sets the minimum count of leading zeros in the hash of the public keys.
    pub fn zeros(&mut self, v: usize) -> &mut Self {
        self.zeros = v;
        self
    }

    /// Sets the features.
    pub fn features(&mut self, v: Features) -> &mut Self {
        self.features = v;
        self
    }

    /// Sets the nonce trials per byte.
    pub fn nonce_trials_per_byte(&mut self, v: NonceTrialsPerByte) -> &mut Self {
        self.nonce_trials_per_byte = v;
        self
    }

    /// Sets the payload length extra bytes.
    pub fn payload_length_extra_bytes(&mut self, v: PayloadLengthExtraBytes) -> &mut Self {
        self.payload_length_extra_bytes = v;
        self
    }

    /// Returns the private identity this builder represents.
    pub fn build(&self, n: usize, cancel: Arc<AtomicBool>) -> Result<Vec<Private>, Error> {
        let mut identities = Vec::new();
        let mut signing_key_nonce: u64 = 0;
        let mut encryption_key_nonce: u64 = 1;
        for _ in 0..n {
            'outer: loop {
                if cancel.load(Ordering::SeqCst) {
                    return Err(Error::Canceled);
                }
                for _ in 0..0x1000 {
                    let mut bytes = self.password.clone();
                    VarInt::new(signing_key_nonce).write_to(&mut bytes).unwrap();
                    let private_signing_key =
                        PrivateKey::new(sha512(bytes)[..32].try_into().unwrap())?;
                    signing_key_nonce += 2;

                    let mut bytes = self.password.clone();
                    VarInt::new(encryption_key_nonce)
                        .write_to(&mut bytes)
                        .unwrap();
                    let private_encryption_key =
                        PrivateKey::new(sha512(bytes)[..32].try_into().unwrap())?;
                    encryption_key_nonce += 2;

                    let mut bytes = private_signing_key.public_key().encode();
                    bytes.append(&mut private_encryption_key.public_key().encode());
                    let hash = ripemd160_sha512(bytes);
                    if count_zeros(hash) >= self.zeros {
                        let identity = Private::new(
                            self.version,
                            self.stream,
                            self.features,
                            self.nonce_trials_per_byte,
                            self.payload_length_extra_bytes,
                            private_signing_key,
                            private_encryption_key,
                            false,
                        )?;
                        identities.push(identity);
                        break 'outer;
                    }
                }
            }
        }
        Ok(identities)
    }
}

#[test]
fn test_deterministic_builder() {
    let cancel = Arc::new(AtomicBool::new(false));
    let identities = Private::deterministic_builder(b"hello".to_vec())
        .build(2, cancel)
        .unwrap();
    assert_eq!(
        identities[0].address().to_string(),
        "BM-2cWhA72reAp1CBa8JmspqWRCdw93sDLgiS"
    );
    assert_eq!(
        identities[1].address().to_string(),
        "BM-2cWoETgcY3YJHZfKPVLS1avrXtbzJtcvDY"
    );
}

/// A builder for building a chan identity.
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
pub struct ChanBuilder {
    version: AddressVersion,
    stream: StreamNumber,
    zeros: usize,
    features: Features,
    nonce_trials_per_byte: NonceTrialsPerByte,
    payload_length_extra_bytes: PayloadLengthExtraBytes,
    password: Vec<u8>,
}

impl ChanBuilder {
    fn new(password: Vec<u8>) -> Self {
        Self {
            version: CURRENT_ADDRESS_VERSION,
            stream: ROOT_STREAM,
            zeros: 1,
            features: Features::empty(),
            nonce_trials_per_byte: default_nonce_trials_per_byte(),
            payload_length_extra_bytes: default_payload_length_extra_bytes(),
            password,
        }
    }

    /// Sets the address version.
    pub fn version(&mut self, v: AddressVersion) -> &mut Self {
        self.version = v;
        self
    }

    /// Sets the stream number.
    pub fn stream(&mut self, v: StreamNumber) -> &mut Self {
        self.stream = v;
        self
    }

    /// Returns the private identity this builder represents.
    pub fn build(&self, cancel: Arc<AtomicBool>) -> Result<Private, Error> {
        let builder = DeterministicBuilder {
            version: self.version,
            stream: self.stream,
            zeros: self.zeros,
            features: self.features,
            nonce_trials_per_byte: self.nonce_trials_per_byte,
            payload_length_extra_bytes: self.payload_length_extra_bytes,
            password: self.password.clone(),
        };
        let identities = builder.build(1, cancel)?;
        let mut identity = identities[0].clone();
        identity.chan = true;
        Ok(identity)
    }
}