I try to connect to MS-SQL-Analysis-Services via TCP, and looking for information, how encryption is actually done.
I've found https://web.archive.org/web/20080905014603/http:/sqlblog.com/blogs/mosha/archive/2005/12/02/analysis-services-2005-protocol-xmla-over-tcp-ip.aspx which says, that the messages are encrypted, but not how. And from https://learn.microsoft.com/en-us/openspecs/sql_server_protocols/ms-ssas/be97878a-81ba-46cc-bde1-0d2548cd7e05 I know, that there is a header with length information of data and token, but not, how encryption is done.
The reference to RFC2743 or GSS-API is not very useful, because GSS_wrap
uses some other format.
Where can I find some reference implementation of the encryption done in XMLA?