mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-16 12:23:07 +00:00
30 lines
809 B
Nim
30 lines
809 B
Nim
## Nim-Codex
|
|
## Copyright (c) 2025 Status Research & Development GmbH
|
|
## Licensed under either of
|
|
## * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
## * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
## at your option.
|
|
## This file may not be copied, modified, or distributed except according to
|
|
## those terms.
|
|
|
|
{.push raises: [].}
|
|
|
|
import std/strformat
|
|
|
|
import pkg/stew/byteutils
|
|
|
|
func bencode*(value: uint64): seq[byte] =
|
|
fmt"i{value}e".toBytes
|
|
|
|
func bencode*(value: int64): seq[byte] =
|
|
fmt"i{value}e".toBytes
|
|
|
|
func bencode*(value: openArray[byte]): seq[byte] =
|
|
fmt"{value.len}:".toBytes & @value
|
|
|
|
func bencode*(value: string): seq[byte] =
|
|
bencode(value.toBytes)
|
|
|
|
proc bencode*[T: not byte](value: openArray[T]): seq[byte] =
|
|
fmt"l{value.mapIt(bencode(it).toString).join}e".toBytes
|