wallet-pass

Crates.iowallet-pass
lib.rswallet-pass
version0.5.0
sourcesrc
created_at2021-08-01 19:59:05.143473
updated_at2024-08-06 15:08:16.369735
descriptionBuild and sign passes for apple wallet
homepage
repositoryhttps://github.com/pixix4/wallet-pass
max_upload_size
id430135
size112,715
Lars Westermann (pixix4)

documentation

README

wallet-pass

Latest version

Build and sign passes for apple wallet

Sign an exisiting pass

cargo build --release --features cli --bin signpass

./target/release/signpass --help

Create a custom pass

use std::path::Path;
use wallet_pass::{
    template::{Details, Field, Barcode, BarcodeFormat},
    Pass,
};

fn main() {
    // Load pass template
    let mut pass = Pass::from_path(Path::new("./StoreCard.pass")).unwrap();

    // Set general attributes
    pass.pass_type_identifier("pass.com.store.generic");
    pass.team_identifier("ASDF1234ASDF");

    // Set user specific attributes
    pass.serial_number("1234567890");
    pass.authentication_token("sda8f6ffDFS798SFDfsfSdf");

    pass.barcode(Barcode::new(BarcodeFormat::PkBarcodeFormatQr, "QR Code", "iso-8859-1"));

    let mut store_card = Details::new();

    let mut field = Field::new_f64("balance", 13.37);
    field.label("balance");
    field.currency_code("EUR");
    store_card.add_primary_field(field);

    let mut field = Field::new_string("account_name", "Max Mustermann");
    field.label("account_name");
    store_card.add_secondary_field(field);

    pass.store_card(store_card);

    // Sign, comprass and save pass
    pass.export_to_file(
        Path::new("Certificates.p12"),
        "Certificates Password",
        Path::new("Apple Worldwide Developer Relations Certification Authority.pem"),
        Path::new("./StoreCard.pkpass"),
    )
    .unwrap();
}
Commit count: 12

cargo fmt