package crypto import ( "google.golang.org/protobuf/proto" "go.mau.fi/mautrix-gmessages/libgm/binary" ) func DecodeAndEncodeB64(data string, msg proto.Message) error { decodedBytes, err := Base64DecodeStandard(data) if err != nil { return err } err = binary.DecodeProtoMessage(decodedBytes, msg) if err != nil { return err } return nil } func DecodeEncodedResponse(data string) (*binary.EncodedResponse, error) { decodedBytes, err := Base64DecodeStandard(data) if err != nil { return nil, err } decodedData := &binary.EncodedResponse{} err = binary.DecodeProtoMessage(decodedBytes, decodedData) if err != nil { return nil, err } return decodedData, nil }