slugencode 0.1.0

The swiss-army life library for encoding and decoding formats including Hex, Base32, Base58 (not ct), and Base64 in a constant-time manner.
Documentation
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
//! # SlugEncode
//! 
//! SlugAPI is a module that provides a unified interface for encoding and decoding various formats such as Hex, Base32, Base58, and Base64 in a constant-time manner. It is designed to be efficient and secure, making it suitable for cryptographic applications.
//! 
//! This crate provides a set of traits and implementations for encoding and decoding data in a constant-time manner, ensuring that sensitive data is handled securely. It supports various encodings including Hex, Base32, Base58, and Base64.
//! 
//! ## Features
//! 
//! [X] Encodings (Hex, Base32, Base58, Base64, Bytes)
//! [] Try Get Encoding (using RegEx) (feature)
//! [] Large Unsigned Integer (feature)
//! [] Zeroize (feature)
//! [] integrity-check (feature) (uses BLAKE2s)
//! [] Add Base85 (not constant-time)
//! [] Add feature Cert
//! 


// TODO:
// [X] From_Hex
// [X] From_Bs64_URL
// [X] From_Bs64
// [X] From_bs32
// [X] From_bs32_unpadded


// [X] From Base32
// [X] From Base58

// [X] To_Hex
// [X] To_Bs64_URL
// [X] To_Bs64
// [X] To_Base58 (not ct)
// [X] To_bs32
// [X] To_bs32_unpadded

// Add u64, u128, u256 ...

// Hexadecimal
use ct_codecs::{Decoder, Encoder, Hex};

// Base64
use ct_codecs::Base64UrlSafe;
use ct_codecs::Base64;

// Base32
use base32ct::Error as Bs32Error;
use base32ct::{Base32,Base32Unpadded};
use base32ct::Encoding;

// Base58
use bs58;
use bs58::encode::Error as bs58Error;
use bs58::decode::Error as bs58DecodingError;

// Errors
use ct_codecs::Error;


pub mod errors;
pub mod prelude;

use errors::SlugEncodingError;

/// # SlugEncodings
/// 
/// This enum features different encodings available to be used. It must be imported to be used with SlugAPI.
#[derive(Clone,Copy,Debug,PartialEq,PartialOrd,Hash)]
pub enum SlugEncodings {
    Hex,
    Base32,
    Base32unpadded,
    Base58,
    Base64,
    Base64urlsafe,
}

/// # SlugEncoder
/// 
/// The SlugEncoder trait is used to encode bytes to different encodings like hex, base32, base58, and base64.
pub trait SlugEncoder {
    /// # \[Constant-Time] To Hexadecimal
    /// 
    /// Uses `ct_codecs` crate to convert bytes to hexadecimal.
    /// 
    /// Accepts as input `AsRef<[u8]>`
    fn to_hex(&self) -> Result<String, Error>;
    /// # \[Constant-Time] To Base64 (URL SAFE) (With Padding)
    /// 
    /// Uses `ct_codecs` crate to convert bytes to base64 url safe string.
    /// 
    /// Accepts as input `AsRef<[u8]>`
    fn to_bs64_url(&self) -> Result<String, Error>;
    /// # \[Constant-Time] To Base64
    /// 
    /// Uses `ct_codecs` crate to convert bytes to base64 string.
    /// 
    /// Accepts as input `AsRef<[u8]>`
    fn to_bs64(&self) -> Result<String, Error>;
    /// # \[Constant-Time] To Base32
    fn to_bs32(&self) -> String;
    /// # \[Constant-Time] To Base32 Unpadded
    fn to_bs32_unpadded(&self) -> String;
    /// Not Constant-Time
    fn to_base58(&self) -> String;
}

/// # SlugEncoder
/// 
/// The SlugDecoder trait is used to decode bytes using different encodings like hex, base32, base58, and base64.
pub trait SlugDecoder {
    /// # \[Constant-Time] From Hexadecimal
    /// Uses `ct_codecs` crate to convert a hexadecimal string into a vector of bytes.
    fn from_hex(&self) -> Result<Vec<u8>,Error>;
    /// # \[Constant-Time] From Base64
    fn from_bs64(&self) -> Result<Vec<u8>,Error>;
    /// # \[Constant-Time] From Base64 (URL SAFE) (With Padding)
    fn from_bs64_url(&self) -> Result<Vec<u8>,Error>;
    // # \[Constant-Time] From Base32
    fn from_bs32(&self) -> Result<Vec<u8>,Bs32Error>;
    // # \[Constant-Time] From Base32 Unpadded
    fn from_bs32_unpadded(&self) -> Result<Vec<u8>,Bs32Error>;
    /// From Base58 (Not Constant-Time)
    fn from_base58(&self) -> Result<Vec<u8>,bs58DecodingError>;
}

/*
/// # SlugEncode
/// 
/// The trait used to convert the encoding.
pub trait SlugEncode {
    fn as_bytes(&self);
    fn to_bytes(&self);
    
    /// # \[Constant-Time] To Hexadecimal
    /// 
    /// Uses `ct_codecs` crate to convert bytes to hexadecimal.
    /// 
    /// Accepts as input `AsRef<[u8]>`
    fn to_hex<T: AsRef<[u8]>>(&self, bytes: T) -> Result<String, Error> {
        let hex_str = Hex::encode_to_string(bytes.as_ref())?;
        Ok(hex_str)
    }
    fn to_bs32();
    fn to_bs58();
    /// # \[Constant-Time] To Base64 (URL SAFE) (With Padding)
    /// 
    /// Uses `ct_codecs` crate to convert bytes to base64 url safe string.
    /// 
    /// Accepts as input `AsRef<[u8]>`
    fn to_bs64_url<T: AsRef<[u8]>>(&self, bytes: T) -> Result<String, Error> {
        let bs64_url_str = Base64UrlSafe::encode_to_string(bytes.as_ref())?;
        Ok(bs64_url_str)
    }
    /// # \[Constant-Time] To Base64
    /// 
    /// Uses `ct_codecs` crate to convert bytes to base64 string.
    /// 
    /// Accepts as input `AsRef<[u8]>`
    fn to_bs64<T: AsRef<[u8]>>(&self, bytes: T) -> Result<String, Error> {
        let bs64_url_str = Base64::encode_to_string(bytes.as_ref())?;
        Ok(bs64_url_str)
    }

    /// # \[Constant-Time] From Hexadecimal
    /// 
    /// Uses `ct_codecs` crate to convert a hexadecimal string into a vector of bytes.
    /// 
    /// Returns a `ct_codecs` Error if something goes wrong.
    /// 
    /// Accepts as input String or &str
    /// 
    /// ```rust
    /// use slugencode::{SlugEncode,SlugEncoder};
    /// 
    /// fn main() {
    ///     let hex_str: &str = "FFFFFFFF";
    /// }
    /// ```
    fn from_hex<T: AsRef<str>>(&self, hex_str: T) -> Result<Vec<u8>,Error> {
        let bytes = Hex::decode_to_vec(hex_str.as_ref(), None)?;
        Ok(bytes)
    }
    fn from_bs32();
    fn from_bs58();

    /// # \[Constant-Time] From Base64 (URL SAFE) (With Padding)
    /// 
    /// ## Description
    /// 
    /// **Note:** Base64 (URL SAFE) uses `_` and `-` as opposed to `+` and `/`
    /// 
    /// Uses `ct_codecs` crate to convert a base64 (url safe) string into a vector of bytes
    /// 
    /// Returns a `ct_codecs` Error if something goes wrong.
    /// 
    /// Accepts as input `String` or `&str`
    fn from_bs64_url<T: AsRef<str>>(&self, bs64_url_safe_str: T) -> Result<Vec<u8>,Error> {
        let bytes = Base64UrlSafe::decode_to_vec(bs64_url_safe_str.as_ref(), None)?;
        Ok(bytes)
    }
    /// # \[Constant-Time] From Base64
    /// 
    /// ## Description
    /// 
    /// Uses `ct_codecs` crate to convert a base64 string into a vector of bytes
    /// 
    /// Returns a `ct_codecs` Error if something goes wrong.
    /// 
    /// Accepts as input `String` or `&str`
    fn from_bs64<T: AsRef<str>>(&self, bs64: T) -> Result<Vec<u8>,Error> {
        let bytes = Base64::decode_to_vec(bs64.as_ref(), None)?;
        Ok(bytes)
    }
}

*/


//=====IMPL SLUGENCODER=====//

impl SlugEncoder for Vec<u8> {
    fn to_hex(&self) -> Result<String, Error> {
        let hex_str = Hex::encode_to_string(&self)?;
        Ok(hex_str)
    }
    fn to_bs64(&self) -> Result<String, Error> {
        let bs64_url_str = Base64::encode_to_string(&self)?;
        Ok(bs64_url_str)
    }
    fn to_bs64_url(&self) -> Result<String, Error> {
        let bs64_url_str = Base64UrlSafe::encode_to_string(&self)?;
        Ok(bs64_url_str)
    }
    fn to_bs32(&self) -> String {
        let bs32 = Base32::encode_string(&self);
        return bs32
    }
    fn to_bs32_unpadded(&self) -> String {
        let bs32 = Base32Unpadded::encode_string(&self);
        bs32
    }
    fn to_base58(&self) -> String {
        let s = bs58::encode(&self).into_string();
        return s
    }
}

impl SlugEncoder for &[u8] {
    fn to_hex(&self) -> Result<String, Error> {
        let hex_str = Hex::encode_to_string(&self)?;
        Ok(hex_str)
    }
    fn to_bs64(&self) -> Result<String, Error> {
        let bs64_url_str = Base64::encode_to_string(&self)?;
        Ok(bs64_url_str)
    }
    fn to_bs64_url(&self) -> Result<String, Error> {
        let bs64_url_str = Base64UrlSafe::encode_to_string(&self)?;
        Ok(bs64_url_str)
    }
    fn to_bs32(&self) -> String {
        let bs32 = Base32::encode_string(&self);
        return bs32
    }
    fn to_bs32_unpadded(&self) -> String {
        let bs32 = Base32Unpadded::encode_string(&self);
        bs32
    }
    fn to_base58(&self) -> String {
        let s = bs58::encode(&self).into_string();
        return s
    }
}

impl SlugEncoder for [u8;28] {
    fn to_hex(&self) -> Result<String, Error> {
        let hex_str = Hex::encode_to_string(&self)?;
        Ok(hex_str)
    }
    fn to_bs64(&self) -> Result<String, Error> {
        let bs64_url_str = Base64::encode_to_string(&self)?;
        Ok(bs64_url_str)
    }
    fn to_bs64_url(&self) -> Result<String, Error> {
        let bs64_url_str = Base64UrlSafe::encode_to_string(&self)?;
        Ok(bs64_url_str)
    }
    fn to_bs32(&self) -> String {
        let bs32 = Base32::encode_string(self);
        return bs32
    }
    fn to_bs32_unpadded(&self) -> String {
        let bs32 = Base32Unpadded::encode_string(self);
        bs32
    }
    fn to_base58(&self) -> String {
        let s = bs58::encode(&self).into_string();
        return s
    }
}

impl SlugEncoder for [u8;32] {
    fn to_hex(&self) -> Result<String, Error> {
        let hex_str = Hex::encode_to_string(&self)?;
        Ok(hex_str)
    }
    fn to_bs64(&self) -> Result<String, Error> {
        let bs64_url_str = Base64::encode_to_string(&self)?;
        Ok(bs64_url_str)
    }
    fn to_bs64_url(&self) -> Result<String, Error> {
        let bs64_url_str = Base64UrlSafe::encode_to_string(&self)?;
        Ok(bs64_url_str)
    }
    fn to_bs32(&self) -> String {
        let bs32 = Base32::encode_string(self);
        return bs32
    }
    fn to_bs32_unpadded(&self) -> String {
        let bs32 = Base32Unpadded::encode_string(self);
        bs32
    }
    fn to_base58(&self) -> String {
        let s = bs58::encode(&self).into_string();
        return s
    }
}

impl SlugEncoder for [u8;48] {
    fn to_hex(&self) -> Result<String, Error> {
        let hex_str = Hex::encode_to_string(&self)?;
        Ok(hex_str)
    }
    fn to_bs64(&self) -> Result<String, Error> {
        let bs64_url_str = Base64::encode_to_string(&self)?;
        Ok(bs64_url_str)
    }
    fn to_bs64_url(&self) -> Result<String, Error> {
        let bs64_url_str = Base64UrlSafe::encode_to_string(&self)?;
        Ok(bs64_url_str)
    }
    fn to_bs32(&self) -> String {
        let bs32 = Base32::encode_string(self);
        return bs32
    }
    fn to_bs32_unpadded(&self) -> String {
        let bs32 = Base32Unpadded::encode_string(self);
        bs32
    }
    fn to_base58(&self) -> String {
        let s = bs58::encode(&self).into_string();
        return s
    }
}

impl SlugEncoder for [u8;64] {
    fn to_hex(&self) -> Result<String, Error> {
        let hex_str = Hex::encode_to_string(&self)?;
        Ok(hex_str)
    }
    fn to_bs64(&self) -> Result<String, Error> {
        let bs64_url_str = Base64::encode_to_string(&self)?;
        Ok(bs64_url_str)
    }
    fn to_bs64_url(&self) -> Result<String, Error> {
        let bs64_url_str = Base64UrlSafe::encode_to_string(&self)?;
        Ok(bs64_url_str)
    }
    fn to_bs32(&self) -> String {
        let bs32 = Base32::encode_string(self);
        return bs32
    }
    fn to_bs32_unpadded(&self) -> String {
        let bs32 = Base32Unpadded::encode_string(self);
        bs32
    }
    fn to_base58(&self) -> String {
        let s = bs58::encode(&self).into_string();
        return s
    }
}


/// # SlugAPI Usage
/// 
/// A struct for easy use in conversion. Contains the slugencodings enum that holds the different encodings
/// 
/// ## Example Code
/// 
/// ```rust
/// use slugencodings::SlugAPI;
/// use slugencodings::SlugEncodings;
/// 
/// fn main() {
///     let encoder = SlugAPI::new(SlugEncodings::Hex);
/// }
/// ```
/// 

#[derive(Clone,Copy,Debug,PartialEq,PartialOrd,Hash)]
pub struct SlugEncodingUsage {
    encoding: SlugEncodings,
}

impl SlugEncodingUsage {
    /// Creates a new instance using the intended encoding/decoding
    pub fn new(encoding: SlugEncodings) -> Self {
        return Self {
            encoding: encoding,
        }
    }
    /// Gets encoding
    pub fn get_encoding(&self) -> SlugEncodings {
        return self.encoding
    }
    pub fn decode<T: AsRef<str>>(&self, encoded_str: T) -> Result<Vec<u8>,SlugEncodingError> {
        match self.encoding {
            SlugEncodings::Hex => {
                let decoding = encoded_str.as_ref().from_hex();

                match decoding {
                    Ok(v) => return Ok(v),
                    Err(_) => return Err(SlugEncodingError::DecodingError)
                }
            }
            SlugEncodings::Base32 => {
                let decoding = encoded_str.as_ref().from_bs32();

                match decoding {
                    Ok(v) => return Ok(v),
                    Err(_) => return Err(SlugEncodingError::DecodingError)
                }
            }
            SlugEncodings::Base32unpadded => {
                let decoding = encoded_str.as_ref().from_bs32_unpadded();

                match decoding {
                    Ok(v) => return Ok(v),
                    Err(_) => return Err(SlugEncodingError::DecodingError)
                }
            }
            SlugEncodings::Base58 => {
                let decoding = encoded_str.as_ref().from_base58();

                match decoding {
                    Ok(v) => return Ok(v),
                    Err(_) => return Err(SlugEncodingError::DecodingError)
                }
            }
            SlugEncodings::Base64 => {
                let decoding = encoded_str.as_ref().from_bs64();

                match decoding {
                    Ok(v) => return Ok(v),
                    Err(_) => return Err(SlugEncodingError::DecodingError)
                }
            }
            SlugEncodings::Base64urlsafe => {
                let decoding = encoded_str.as_ref().from_bs64_url();

                match decoding {
                    Ok(v) => return Ok(v),
                    Err(_) => return Err(SlugEncodingError::DecodingError)
                }
            }
        }
    }
    pub fn encode<T: AsRef<[u8]>>(&self, bytes: T) -> Result<String,SlugEncodingError> {
        match self.encoding {
            SlugEncodings::Hex => {
                let encoding = bytes.as_ref().to_hex();
                match encoding {
                    Ok(v) => return Ok(v),
                    Err(_) => return Err(SlugEncodingError::Failed)
                }
            }
            SlugEncodings::Base32 => {
                Ok(bytes.as_ref().to_bs32())
            }
            SlugEncodings::Base32unpadded => {
                Ok(bytes.as_ref().to_bs32_unpadded())
            }
            SlugEncodings::Base58 => {
                Ok(bytes.as_ref().to_base58())
            }
            SlugEncodings::Base64 => {
                let encoding =  bytes.as_ref().to_bs64();

                match encoding {
                    Ok(v) => return Ok(v),
                    Err(_) => return Err(SlugEncodingError::Failed)
                }
            }
            SlugEncodings::Base64urlsafe => {
                let encoding =  bytes.as_ref().to_bs64_url();

                match encoding {
                    Ok(v) => return Ok(v),
                    Err(_) => return Err(SlugEncodingError::Failed)
                }
            }
        }
    }
}

impl SlugDecoder for String {
    fn from_hex(&self) -> Result<Vec<u8>,Error> {
        let output = Hex::decode_to_vec(&self, None)?;
        Ok(output)
    }
    fn from_bs64(&self) -> Result<Vec<u8>,Error> {
        let output = Base64::decode_to_vec(&self, None)?;
        Ok(output)
    }
    fn from_bs64_url(&self) -> Result<Vec<u8>,Error> {
        let output = Base64UrlSafe::decode_to_vec(&self, None)?;
        Ok(output)
    }
    fn from_bs32(&self) -> Result<Vec<u8>,Bs32Error> {
        let output = Base32::decode_vec(&self)?;
        Ok(output)
    }
    fn from_bs32_unpadded(&self) -> Result<Vec<u8>,Bs32Error> {
        let output = Base32Unpadded::decode_vec(&self)?;
        Ok(output)
    }
    fn from_base58(&self) -> Result<Vec<u8>,bs58DecodingError> {
        let output = bs58::decode(&self).into_vec()?;
        Ok(output)
    }
}

impl SlugDecoder for &str {
fn from_hex(&self) -> Result<Vec<u8>,Error> {
        let output = Hex::decode_to_vec(&self, None)?;
        Ok(output)
    }
    fn from_bs64(&self) -> Result<Vec<u8>,Error> {
        let output = Base64::decode_to_vec(&self, None)?;
        Ok(output)
    }
    fn from_bs64_url(&self) -> Result<Vec<u8>,Error> {
        let output = Base64UrlSafe::decode_to_vec(&self, None)?;
        Ok(output)
    }
    fn from_bs32(&self) -> Result<Vec<u8>,Bs32Error> {
        let output = Base32::decode_vec(&self)?;
        Ok(output)
    }
    fn from_bs32_unpadded(&self) -> Result<Vec<u8>,Bs32Error> {
        let output = Base32Unpadded::decode_vec(&self)?;
        Ok(output)
    }
    fn from_base58(&self) -> Result<Vec<u8>,bs58DecodingError> {
        let output = bs58::decode(&self).into_vec()?;
        Ok(output)
    }
}





#[test]
fn run() {
    use self::SlugEncoder;
    let bytes: [u8;30] = [33u8;30];
    let byte_slice = bytes.as_slice();
    let output = byte_slice.to_base58();

    println!("Output: {}", output);
}

#[test]
fn slugencoder() {
    use self::SlugEncoder;

    println!("Running SlugEncoder Tests:");
    println!("");

    let message_concat: &str = "4144675a6e958d60";
    let message_224: &str = "4144675a6e958d600a2d6a859f5b16ab321ec93e47580ec42025be0b";
    let message_512: &str = "62928ef1f4effcfcba350e9e033ed8c07a94066654e1a4be79dd72027f3828480a7c517266a04fd747a8702d7087a298484c525bdd1b54997bb5eca1a6219b58";

    let bytes = message_concat.as_bytes();
    let byte_vec: Vec<u8> = bytes.to_vec();

    println!("HEX: {}",bytes.to_hex().unwrap());
    println!("Base32: {}", bytes.to_bs32());
    println!("Base32_unpadded: {}", bytes.to_bs32_unpadded());
    println!("Base58: {}", bytes.to_base58());
    println!("Base64: {}",bytes.to_bs64().unwrap());
    println!("Base64_URL_SAFE: {}",bytes.to_bs64_url().unwrap());

}

#[test]
fn slugapi() {
    let x = SlugEncodingUsage::new(SlugEncodings::Base64);
    let output = x.encode(b"Hnma").unwrap();

    println!("Output: {}", output)
}

#[test]
fn slugdecoder() {
    use self::SlugEncoder;

    println!("Running SlugEncoder Tests:");
    println!("");

    let message_concat: &str = "4144675a6e958d60";
    let message_224: &str = "4144675a6e958d600a2d6a859f5b16ab321ec93e47580ec42025be0b";
    let message_512: &str = "62928ef1f4effcfcba350e9e033ed8c07a94066654e1a4be79dd72027f3828480a7c517266a04fd747a8702d7087a298484c525bdd1b54997bb5eca1a6219b58";

    let bytes = message_concat.as_bytes();
    let byte_vec: Vec<u8> = bytes.to_vec();

    println!("HEX: {}",bytes.to_hex().unwrap());
    println!("Base32: {}", bytes.to_bs32());
    println!("Base32_unpadded: {}", bytes.to_bs32_unpadded());
    println!("Base58: {}", bytes.to_base58());
    println!("Base64: {}",bytes.to_bs64().unwrap());
    println!("Base64_URL_SAFE: {}",bytes.to_bs64_url().unwrap());

    let hex = bytes.to_hex().unwrap();
    let output = hex.from_hex().unwrap();

    println!("Decoded Output: {:?}", output)
}

#[test]
fn slugapi_usage() {
    let message_512: &str = "62928ef1f4effcfcba350e9e033ed8c07a94066654e1a4be79dd72027f3828480a7c517266a04fd747a8702d7087a298484c525bdd1b54997bb5eca1a6219b58";
    
    let x = SlugEncodingUsage::new(SlugEncodings::Hex);
    let output = x.decode(message_512).unwrap();

    println!("Output: {:?}", output)
}