mirror of
https://dev.narayana.im/narayana/telegabber.git
synced 2026-08-05 12:17:06 +00:00
15 lines
346 B
Go
15 lines
346 B
Go
//go:build signal_legacy
|
|
|
|
package libsignal
|
|
|
|
/*
|
|
#include <signal_protocol.h>
|
|
#include <session_pre_key.h>
|
|
*/
|
|
import "C"
|
|
|
|
// Vanilla libsignal-protocol-c's signed prekeys carry only the one
|
|
// (legacy) signature - there is no second OMEMO signature to extract.
|
|
func signedPreKeyOmemoSignature(spk *C.session_signed_pre_key) []byte {
|
|
return nil
|
|
}
|