4 个版本 (2 个重大更改)

0.5.1 2022 年 10 月 14 日
0.5.0 2022 年 10 月 13 日
0.4.1 2022 年 10 月 10 日
0.1.0 2022 年 4 月 11 日

#1424 in 数据结构

Download history • Rust 包仓库 621/week @ 2024-04-05 • Rust 包仓库 785/week @ 2024-04-12 • Rust 包仓库 726/week @ 2024-04-19 • Rust 包仓库 825/week @ 2024-04-26 • Rust 包仓库 889/week @ 2024-05-03 • Rust 包仓库 698/week @ 2024-05-10 • Rust 包仓库 635/week @ 2024-05-17 • Rust 包仓库 454/week @ 2024-05-24 • Rust 包仓库 541/week @ 2024-05-31 • Rust 包仓库 497/week @ 2024-06-07 • Rust 包仓库 570/week @ 2024-06-14 • Rust 包仓库 624/week @ 2024-06-21 • Rust 包仓库 520/week @ 2024-06-28 • Rust 包仓库 483/week @ 2024-07-05 • Rust 包仓库 558/week @ 2024-07-12 • Rust 包仓库 158/week @ 2024-07-19 • Rust 包仓库

1,822 每月下载量
用于 13 个 crate (2 个直接使用)

Apache-2.0

23KB
526

CACAOs

CACAOs 是一个 Rust 库,实现了 CAIP-74 链无关对象能力规范,内置了对 Sign In With Ethereum 的支持。

示例

使用 SIWE 类型 CACAOs 的简单示例

use async_trait::async_trait;
use cacaos::{
    siwe_cacao::{Eip191, Eip4361, Payload, SiweCacao},
    SignatureScheme,
};
use futures::executor::block_on;
use hex::FromHex;
use libipld::{cbor::DagCborCodec, codec::Encode, multihash::Code, store::DefaultParams, Block};
use siwe::Message;
use std::str::FromStr;

async fn run_example() {
    let message: Payload = Message::from_str(
        r#"localhost:4361 wants you to sign in with your Ethereum account:
0x6Da01670d8fc844e736095918bbE11fE8D564163

SIWE Notepad Example

URI: https://127.0.0.1:4361
Version: 1
Chain ID: 1
Nonce: kEWepMt9knR6lWJ6A
Issued At: 2021-12-07T18:28:18.807Z"#,
    )
    .unwrap()
    .into();

    let sig = <Vec<u8>>::from_hex(r#"6228b3ecd7bf2df018183aeab6b6f1db1e9f4e3cbe24560404112e25363540eb679934908143224d746bbb5e1aa65ab435684081f4dbb74a0fec57f98f40f5051c"#).unwrap().try_into().unwrap();

    // verify a siwe signature
    let v = Eip191::verify(&message, &sig).await.unwrap();

    // sign the message to create a cacao
    let cacao: SiweCacao = SiweCacao::new(message, sig, None);

    // ipld-encode the cacao
    let block = Block::<DefaultParams>::encode(DagCborCodec, Code::Blake3_256, &cacao).unwrap();
}

fn main() {
    block_on(run_example());
}

`

依赖项

~11–18MB
~255K SLoC