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 |
x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 |
/**
* Utilities for encoding and decoding common formats like hex, base64, and varint.
*
* ```ts
* import { encodeBase64, decodeBase64 } from "@std/encoding";
* import { assertEquals } from "@std/assert";
*
* const foobar = new TextEncoder().encode("foobar");
* assertEquals(encodeBase64(foobar), "Zm9vYmFy");
* assertEquals(decodeBase64("Zm9vYmFy"), foobar);
* ```
*
* @module
*/
import type { Ascii85Standard as _typeAlias_Ascii85Standard } from "jsr:@std/[email protected]"
/**
* Supported ascii85 standards for {@linkcode EncodeAscii85Options} and
* {@linkcode DecodeAscii85Options}.
*/
type Ascii85Standard = _typeAlias_Ascii85Standard
export type { Ascii85Standard }
import type { EncodeAscii85Options as _interface_EncodeAscii85Options } from "jsr:@std/[email protected]"
/**
* Options for {@linkcode encodeAscii85}.
*/
interface EncodeAscii85Options extends _interface_EncodeAscii85Options {}
export type { EncodeAscii85Options }
import { encodeAscii85 as _function_encodeAscii85 } from "jsr:@std/[email protected]"
/**
* Converts data into an ascii85-encoded string.
*
* @param data The data to encode.
* @param options Options for encoding.
*
* @return The ascii85-encoded string.
*
* @example Usage
* ```ts
* import { encodeAscii85 } from "@std/encoding/ascii85";
* import { assertEquals } from "@std/assert";
*
* assertEquals(encodeAscii85("Hello world!"), "87cURD]j7BEbo80");
* ```
*/
const encodeAscii85 = _function_encodeAscii85 as typeof _function_encodeAscii85
export { encodeAscii85 }
import type { DecodeAscii85Options as _typeAlias_DecodeAscii85Options } from "jsr:@std/[email protected]"
/**
* Options for {@linkcode decodeAscii85}.
*/
type DecodeAscii85Options = _typeAlias_DecodeAscii85Options
export type { DecodeAscii85Options }
import { decodeAscii85 as _function_decodeAscii85 } from "jsr:@std/[email protected]"
/**
* Decodes a ascii85-encoded string.
*
* @param ascii85 The ascii85-encoded string to decode.
* @param options Options for decoding.
* @return The decoded data.
*
* @example Usage
* ```ts
* import { decodeAscii85 } from "@std/encoding/ascii85";
* import { assertEquals } from "@std/assert";
*
* assertEquals(
* decodeAscii85("87cURD]j7BEbo80"),
* new TextEncoder().encode("Hello world!"),
* );
* ```
*/
const decodeAscii85 = _function_decodeAscii85 as typeof _function_decodeAscii85
export { decodeAscii85 }
import { decodeBase32 as _function_decodeBase32 } from "jsr:@std/[email protected]"
/**
* Decodes a base32-encoded string.
*
* @see {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-6}
*
* @param b32 The base32-encoded string to decode.
* @return The decoded data.
*
* @example Usage
* ```ts
* import { decodeBase32 } from "@std/encoding/base32";
* import { assertEquals } from "@std/assert";
*
* assertEquals(
* decodeBase32("GZRTMMDDGA======"),
* new TextEncoder().encode("6c60c0"),
* );
* ```
*/
const decodeBase32 = _function_decodeBase32 as typeof _function_decodeBase32
export { decodeBase32 }
import { encodeBase32 as _function_encodeBase32 } from "jsr:@std/[email protected]"
/**
* Converts data into a base32-encoded string.
*
* @see {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-6}
*
* @param data The data to encode.
* @return The base32-encoded string.
*
* @example Usage
* ```ts
* import { encodeBase32 } from "@std/encoding/base32";
* import { assertEquals } from "@std/assert";
*
* assertEquals(encodeBase32("6c60c0"), "GZRTMMDDGA======");
* ```
*/
const encodeBase32 = _function_encodeBase32 as typeof _function_encodeBase32
export { encodeBase32 }
import { encodeBase58 as _function_encodeBase58 } from "jsr:@std/[email protected]"
/**
* Converts data into a base58-encoded string.
*
* @see {@link https://datatracker.ietf.org/doc/html/draft-msporny-base58-03#section-3}
*
* @param data The data to encode.
* @return The base58-encoded string.
*
* @example Usage
* ```ts
* import { encodeBase58 } from "@std/encoding/base58";
* import { assertEquals } from "@std/assert";
*
* assertEquals(encodeBase58("Hello World!"), "2NEpo7TZRRrLZSi2U");
* ```
*/
const encodeBase58 = _function_encodeBase58 as typeof _function_encodeBase58
export { encodeBase58 }
import { decodeBase58 as _function_decodeBase58 } from "jsr:@std/[email protected]"
/**
* Decodes a base58-encoded string.
*
* @see {@link https://datatracker.ietf.org/doc/html/draft-msporny-base58-03#section-4}
*
* @param b58 The base58-encoded string to decode.
* @return The decoded data.
*
* @example Usage
* ```ts
* import { decodeBase58 } from "@std/encoding/base58";
* import { assertEquals } from "@std/assert";
*
* assertEquals(
* decodeBase58("2NEpo7TZRRrLZSi2U"),
* new TextEncoder().encode("Hello World!")
* );
* ```
*/
const decodeBase58 = _function_decodeBase58 as typeof _function_decodeBase58
export { decodeBase58 }
import { encodeBase64 as _function_encodeBase64 } from "jsr:@std/[email protected]"
/**
* Converts data into a base64-encoded string.
*
* @see {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-4}
*
* @param data The data to encode.
* @return The base64-encoded string.
*
* @example Usage
* ```ts
* import { encodeBase64 } from "@std/encoding/base64";
* import { assertEquals } from "@std/assert";
*
* assertEquals(encodeBase64("foobar"), "Zm9vYmFy");
* ```
*/
const encodeBase64 = _function_encodeBase64 as typeof _function_encodeBase64
export { encodeBase64 }
import { decodeBase64 as _function_decodeBase64 } from "jsr:@std/[email protected]"
/**
* Decodes a base64-encoded string.
*
* @see {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-4}
*
* @param b64 The base64-encoded string to decode.
* @return The decoded data.
*
* @example Usage
* ```ts
* import { decodeBase64 } from "@std/encoding/base64";
* import { assertEquals } from "@std/assert";
*
* assertEquals(
* decodeBase64("Zm9vYmFy"),
* new TextEncoder().encode("foobar")
* );
* ```
*/
const decodeBase64 = _function_decodeBase64 as typeof _function_decodeBase64
export { decodeBase64 }
import { encodeBase64Url as _function_encodeBase64Url } from "jsr:@std/[email protected]"
/**
* Convert data into a base64url-encoded string.
*
* @see {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-5}
*
* @param data The data to encode.
* @return The base64url-encoded string.
*
* @example Usage
* ```ts
* import { encodeBase64Url } from "@std/encoding/base64url";
* import { assertEquals } from "@std/assert";
*
* assertEquals(encodeBase64Url("foobar"), "Zm9vYmFy");
* ```
*/
const encodeBase64Url = _function_encodeBase64Url as typeof _function_encodeBase64Url
export { encodeBase64Url }
import { decodeBase64Url as _function_decodeBase64Url } from "jsr:@std/[email protected]"
/**
* Decodes a given base64url-encoded string.
*
* @see {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-5}
*
* @param b64url The base64url-encoded string to decode.
* @return The decoded data.
*
* @example Usage
* ```ts
* import { decodeBase64Url } from "@std/encoding/base64url";
* import { assertEquals } from "@std/assert";
*
* assertEquals(
* decodeBase64Url("Zm9vYmFy"),
* new TextEncoder().encode("foobar")
* );
* ```
*/
const decodeBase64Url = _function_decodeBase64Url as typeof _function_decodeBase64Url
export { decodeBase64Url }
import { encodeHex as _function_encodeHex } from "jsr:@std/[email protected]"
/**
* Converts data into a hex-encoded string.
*
* @param src The data to encode.
*
* @return The hex-encoded string.
*
* @example Usage
* ```ts
* import { encodeHex } from "@std/encoding/hex";
* import { assertEquals } from "@std/assert";
*
* assertEquals(encodeHex("abc"), "616263");
* ```
*/
const encodeHex = _function_encodeHex as typeof _function_encodeHex
export { encodeHex }
import { decodeHex as _function_decodeHex } from "jsr:@std/[email protected]"
/**
* Decodes the given hex-encoded string. If the input is malformed, an error is
* thrown.
*
* @param src The hex-encoded string to decode.
*
* @return The decoded data.
*
* @example Usage
* ```ts
* import { decodeHex } from "@std/encoding/hex";
* import { assertEquals } from "@std/assert";
*
* assertEquals(
* decodeHex("616263"),
* new TextEncoder().encode("abc"),
* );
* ```
*/
const decodeHex = _function_decodeHex as typeof _function_decodeHex
export { decodeHex }
import { MaxUint64 as _variable_MaxUint64 } from "jsr:@std/[email protected]"
/**
* The maximum value of an unsigned 64-bit integer.
* Equivalent to `2n**64n - 1n`
*/
const MaxUint64 = _variable_MaxUint64 as typeof _variable_MaxUint64
export { MaxUint64 }
import { MaxVarintLen64 as _variable_MaxVarintLen64 } from "jsr:@std/[email protected]"
/**
* The maximum length, in bytes, of a Varint encoded 64-bit integer.
*/
const MaxVarintLen64 = _variable_MaxVarintLen64 as typeof _variable_MaxVarintLen64
export { MaxVarintLen64 }
import { MaxVarintLen32 as _variable_MaxVarintLen32 } from "jsr:@std/[email protected]"
/**
* The maximum length, in bytes, of a Varint encoded 32-bit integer.
*/
const MaxVarintLen32 = _variable_MaxVarintLen32 as typeof _variable_MaxVarintLen32
export { MaxVarintLen32 }
import { decodeVarint as _function_decodeVarint } from "jsr:@std/[email protected]"
/**
* Given a non empty `buf`, starting at `offset` (default: 0), begin decoding bytes as
* Varint encoded bytes, for a maximum of 10 bytes (offset + 10). The returned
* tuple is of the decoded varint 32-bit number, and the new offset with which
* to continue decoding other data.
*
* If a `bigint` in return is undesired, the `decode32` function will return a
* `number`, but this should only be used in cases where the varint is
* _assured_ to be 32-bits. If in doubt, use `decode()`.
*
* To know how many bytes the Varint took to encode, simply negate `offset`
* from the returned new `offset`.
*
* @param buf The buffer to decode from.
* @param offset The offset to start decoding from.
* @return A tuple of the decoded varint 64-bit number, and the new offset.
*
* @example Usage
* ```ts
* import { decodeVarint } from "@std/encoding/varint";
* import { assertEquals } from "@std/assert";
*
* const buf = new Uint8Array([0x8E, 0x02]);
* assertEquals(decodeVarint(buf), [270n, 2]);
* ```
*/
const decodeVarint = _function_decodeVarint as typeof _function_decodeVarint
export { decodeVarint }
import { decodeVarint32 as _function_decodeVarint32 } from "jsr:@std/[email protected]"
/**
* Given a `buf`, starting at `offset` (default: 0), begin decoding bytes as
* Varint encoded bytes, for a maximum of 5 bytes (offset + 5). The returned
* tuple is of the decoded varint 32-bit number, and the new offset with which
* to continue decoding other data.
*
* Varints are _not 32-bit by default_ so this should only be used in cases
* where the varint is _assured_ to be 32-bits. If in doubt, use `decode()`.
*
* To know how many bytes the Varint took to encode, simply negate `offset`
* from the returned new `offset`.
*
* @param buf The buffer to decode from.
* @param offset The offset to start decoding from.
* @return A tuple of the decoded varint 32-bit number, and the new offset.
*
* @example Usage
* ```ts
* import { decodeVarint32 } from "@std/encoding/varint";
* import { assertEquals } from "@std/assert";
*
* const buf = new Uint8Array([0x8E, 0x02]);
* assertEquals(decodeVarint32(buf), [270, 2]);
* ```
*/
const decodeVarint32 = _function_decodeVarint32 as typeof _function_decodeVarint32
export { decodeVarint32 }
import { encodeVarint as _function_encodeVarint } from "jsr:@std/[email protected]"
/**
* Takes unsigned number `num` and converts it into a Varint encoded
* `Uint8Array`, returning a tuple consisting of a `Uint8Array` slice of the
* encoded Varint, and an offset where the Varint encoded bytes end within the
* `Uint8Array`.
*
* If `buf` is not given then a Uint8Array will be created.
* `offset` defaults to `0`.
*
* If passed `buf` then that will be written into, starting at `offset`. The
* resulting returned `Uint8Array` will be a slice of `buf`. The resulting
* returned number is effectively `offset + bytesWritten`.
*
* @param num The number to encode.
* @param buf The buffer to write into.
* @param offset The offset to start writing at.
* @return A tuple of the encoded Varint `Uint8Array` and the new offset.
*
* @example Usage
* ```ts
* import { encodeVarint } from "@std/encoding/varint";
* import { assertEquals } from "@std/assert";
*
* const buf = new Uint8Array(10);
* assertEquals(encodeVarint(42n, buf), [new Uint8Array([42]), 1]);
* ```
*/
const encodeVarint = _function_encodeVarint as typeof _function_encodeVarint
export { encodeVarint }
|