mirror of
https://github.com/mautrix/signal.git
synced 2026-05-15 05:36:53 -04:00
40 lines
1.4 KiB
Go
40 lines
1.4 KiB
Go
// mautrix-signal - A Matrix-signal puppeting bridge.
|
|
// Copyright (C) 2023 Sumner Evans
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
package libsignalgo_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"go.mau.fi/mautrix-signal/pkg/libsignalgo"
|
|
)
|
|
|
|
// From PublicAPITests.swift:testSignAlternateIdentity
|
|
func TestSignAlternateIdentity(t *testing.T) {
|
|
primary, err := libsignalgo.GenerateIdentityKeyPair()
|
|
assert.NoError(t, err)
|
|
secondary, err := libsignalgo.GenerateIdentityKeyPair()
|
|
assert.NoError(t, err)
|
|
|
|
signature, err := secondary.SignAlternateIdentity(primary.GetIdentityKey())
|
|
assert.NoError(t, err)
|
|
|
|
verified, err := secondary.GetIdentityKey().VerifyAlternateIdentity(primary.GetIdentityKey(), signature)
|
|
assert.NoError(t, err)
|
|
assert.True(t, verified)
|
|
}
|