#!/bin/bash

# skip strongbash header
set -eu
jwt_head='{"alg": "RS256", "typ": "JWT"}'
jwt_payload=\
'{
"login": user1,
"iss" : account.carbonsoft.ru,
"aud" : all,
"exp": 1585335314,
"scope": permMail,
}'
exit 0
