Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Base85"/> class
 /// using a custom alphabet.
 /// </summary>
 /// <param name="alphabet">Alphabet to use.</param>
 public Base85(Base85Alphabet alphabet)
 {
     this.Alphabet = alphabet;
 }
Example #2
0
 public Base85(Base85Alphabet alphabet)
 {
     Require.NotNull(alphabet, nameof(alphabet));
     this.alphabet = alphabet;
 }