8d55954ce1
I want to use test_olm.sh on jenkins, which lacks jq. Hence, add support to olm.main to get id and one-time keys individually.
24 lines
613 B
Bash
Executable file
24 lines
613 B
Bash
Executable file
#! /bin/bash
|
|
|
|
cd `dirname $0`
|
|
|
|
OLM="python -m olm"
|
|
|
|
ALICE_ACCOUNT=alice.account
|
|
ALICE_SESSION=alice.session
|
|
BOB_ACCOUNT=bob.account
|
|
BOB_SESSION=bob.session
|
|
|
|
rm $ALICE_ACCOUNT $BOB_ACCOUNT
|
|
rm $ALICE_SESSION $BOB_SESSION
|
|
|
|
$OLM create_account $ALICE_ACCOUNT
|
|
$OLM create_account $BOB_ACCOUNT
|
|
$OLM generate_keys $BOB_ACCOUNT 1
|
|
|
|
BOB_IDENTITY_KEY="$($OLM identity_key $BOB_ACCOUNT)"
|
|
BOB_ONE_TIME_KEY="$($OLM one_time_key $BOB_ACCOUNT)"
|
|
|
|
$OLM outbound $ALICE_ACCOUNT $ALICE_SESSION "$BOB_IDENTITY_KEY" "$BOB_ONE_TIME_KEY"
|
|
|
|
echo "Hello world" | $OLM encrypt $ALICE_SESSION - - | $OLM inbound $BOB_ACCOUNT $BOB_SESSION - -
|