Skip to content
  • Kevin Cianfarini's avatar
    Use BigInteger for BencodedInt · 098dc655
    Kevin Cianfarini authored
    The bencoding specification defines BencodedInt as any base 10 ASCII text
    representation of an integer. This can be arbitrarily large, and should not
    be limited to the storage capacities of `Int` or `Long`.
    
    Therefore, we include a multiplatform big number library.
    
    Closes #1
    098dc655