blob: 28e54289f8f8c72d458bae64c7dd4f0b53e55ff3 [file] [log] [blame]
Mathew Inwood96c419f2018-12-04 11:52:42 +00001#!/bin/bash
2# Script to sign data with the debug keys. Outputs base64 for embedding into
3# APK metadata.
4
5openssl dgst -sha256 -sign $(dirname $0)/debug_key.pem $1 | base64 -w 0
6echo