#!/bin/bash

password=2jafajkfhaskjdfha

# Generate a new key
echo -e "$password\r\n$password" | minisign -Gf

# Sign this script with that key
echo $password | minisign -Sm ${0}

# Verify signature
# It automatically uses the public key 'minisign.pub' in this directory, created during generation
minisign -Vm ${0}
