Registry / crypto / bs58
library0.5.1rscratesunverified

Another Base58 codec implementation.

# Cargo.toml [dependencies] bs58 = "0.5.1"
INSTALL
IMPORT
SIG · BS58
B
bs58
cryptorustv0.5.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

encode
use bs58::encode;

Encode and decode data using Base58.

use bs58; let data = b"hello"; let encoded = bs58::encode(data).into_string(); println!("Encoded: {}", encoded); let decoded = bs58::decode(&encoded).into_vec().unwrap(); assert_eq!(decoded, data);
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.5.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
21 hits · last 30 days
node
18
Amazon
1
Resources
bs58 — cargo add bs58 · libregistry