Home
last modified time | relevance | path

Searched refs:BinaryExchange (Results 1 – 25 of 32) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Security.Tokens/
H A DSpnegoSecurityTokenProvider.cs138 rst.BinaryExchange = new WstBinaryExchange (Constants.WstBinaryExchangeValueGss); in GetToken()
143 rst.BinaryExchange.Value = sspi.ProcessSpnegoInitialContextTokenRequest (); in GetToken()
145 rst.BinaryExchange.Value = sspi.ProcessMessageType1 (); in GetToken()
163 byte [] raw = reader.Value.BinaryExchange.Value; in GetToken()
173 rstr.BinaryExchange = new WstBinaryExchange (Constants.WstBinaryExchangeValueGss); in GetToken()
179 rstr.BinaryExchange.Value = sspi.ProcessSpnegoProcessContextToken (user, pass); in GetToken()
181 rstr.BinaryExchange.Value = sspi.ProcessMessageType3 (user, pass); in GetToken()
H A DSpnegoSecurityTokenAuthenticator.cs163 byte [] raw = reader.Value.BinaryExchange.Value; in ProcessMessageType1()
175 rstr.BinaryExchange = new WstBinaryExchange (Constants.WstBinaryExchangeValueGss); in ProcessMessageType1()
178 rstr.BinaryExchange.Value = sspi.ProcessSpnegoInitialContextTokenResponse (); in ProcessMessageType1()
180 rstr.BinaryExchange.Value = sspi.ProcessMessageType2 (); in ProcessMessageType1()
204 byte [] raw = reader.Value.BinaryExchange.Value; in ProcessMessageType3()
H A DSslSecurityTokenProvider.cs122 rst.BinaryExchange = new WstBinaryExchange (Constants.WstBinaryExchangeValueTls); in GetToken()
123 rst.BinaryExchange.Value = tls.ProcessClientHello (); in GetToken()
144 tls.ProcessServerHello (reader.Value.BinaryExchange.Value); in GetToken()
150 rstr.BinaryExchange = new WstBinaryExchange (Constants.WstBinaryExchangeValueTls); in GetToken()
151 rstr.BinaryExchange.Value = tls.ProcessClientKeyExchange (); in GetToken()
175 tls.ProcessServerFinished (r.BinaryExchange.Value); in GetToken()
H A DSslSecurityTokenAuthenticator.cs166 tls.ProcessClientHello (reader.Value.BinaryExchange.Value); in ProcessClientHello()
170 rstr.BinaryExchange = new WstBinaryExchange (Constants.WstBinaryExchangeValueTls); in ProcessClientHello()
171 rstr.BinaryExchange.Value = tls.ProcessServerHello (); in ProcessClientHello()
203 tls.ProcessClientKeyExchange (reader.Value.BinaryExchange.Value); in ProcessClientKeyExchange()
244 rstr.BinaryExchange = new WstBinaryExchange (Constants.WstBinaryExchangeValueTls); in ProcessClientKeyExchange()
245 rstr.BinaryExchange.Value = serverFinished; in ProcessClientKeyExchange()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/
H A DBinaryExchange.cs33 public class BinaryExchange class
41 public BinaryExchange (byte[] binaryData, Uri valueType) in BinaryExchange() method in System.IdentityModel.Protocols.WSTrust.BinaryExchange
45 public BinaryExchange (byte[] binaryData, Uri valueType, Uri encodingType) { in BinaryExchange() method in System.IdentityModel.Protocols.WSTrust.BinaryExchange
H A DWSTrustMessage.cs39 public BinaryExchange BinaryExchange { get; set; } property in System.IdentityModel.Protocols.WSTrust.WSTrustMessage
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.IdentityModel/System/IdentityModel/Protocols/WSTrust/
H A DBinaryExchange.cs12 public class BinaryExchange class
24 public BinaryExchange( byte[] binaryData, Uri valueType ) in BinaryExchange() method in System.IdentityModel.Protocols.WSTrust.BinaryExchange
36 public BinaryExchange( byte[] binaryData, Uri valueType, Uri encodingType ) in BinaryExchange() method in System.IdentityModel.Protocols.WSTrust.BinaryExchange
H A DWSTrustMessage.cs32 private BinaryExchange binaryExchange;
88 public BinaryExchange BinaryExchange property in System.IdentityModel.Protocols.WSTrust.WSTrustMessage
H A DWSTrustSerializationHelper.cs262 … if (reader.IsStartElement(trustConstants.Elements.BinaryExchange, trustConstants.NamespaceURI)) in ReadRSTXml()
264 rst.BinaryExchange = ReadBinaryExchange(reader, trustConstants); in ReadRSTXml()
828 if (rst.BinaryExchange != null) in WriteKnownRequestElement()
830 …Serializer.WriteXmlElement(writer, trustConstants.Elements.BinaryExchange, rst.BinaryExchange, rst… in WriteKnownRequestElement()
966 if (StringComparer.Ordinal.Equals(elementName, trustConstants.Elements.BinaryExchange)) in WriteRSTXml()
968 WriteBinaryExchange(writer, elementValue as BinaryExchange, trustConstants); in WriteRSTXml()
1830 if (rstr.BinaryExchange != null) in WriteKnownResponseElement()
1832 …Serializer.WriteXmlElement(writer, trustConstants.Elements.BinaryExchange, rstr.BinaryExchange, rs… in WriteKnownResponseElement()
2054 if (StringComparer.Ordinal.Equals(elementName, trustConstants.Elements.BinaryExchange)) in WriteRSTRXml()
2056 WriteBinaryExchange(writer, elementValue as BinaryExchange, trustConstants); in WriteRSTRXml()
[all …]
H A DWSTrustConstantsAdapter.cs267 private string binaryExchange = WSTrustFeb2005Constants.ElementNames.BinaryExchange;
324 internal string BinaryExchange property in System.IdentityModel.Protocols.WSTrust.WSTrustConstantsAdapter.WSTrustElementNames
H A DWSTrustFeb2005Constants.cs82 public const string BinaryExchange = "BinaryExchange"; field in System.IdentityModel.Protocols.WSTrust.WSTrustFeb2005Constants.ElementNames
H A DWSTrust13Constants.cs94 public const string BinaryExchange = "BinaryExchange"; field in System.IdentityModel.Protocols.WSTrust.WSTrust13Constants.ElementNames
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Description/
H A DWSTrustSTSContract.cs195 if (BinaryExchange != null) in OnWriteBodyContents()
196 BinaryExchange.WriteTo (w); in OnWriteBodyContents()
215 if (BinaryExchange != null) in WriteBodyContentsCore()
216 BinaryExchange.WriteTo (w); in WriteBodyContentsCore()
229 public WstBinaryExchange BinaryExchange; field in System.ServiceModel.Description.WstRequestSecurityTokenBase
H A DWSTrustMessageConverters.cs141 req.BinaryExchange = b; in ReadBinaryExchange()
384 res.BinaryExchange = b; in ReadBinaryExchange()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/
H A DDXD.cs248 this.BinaryExchange = dictionary.Add(TrustDec2005Strings.BinaryExchange); in TrustDec2005Dictionary()
319 Feb2005DictionaryStrings.Add(XD.TrustFeb2005Dictionary.BinaryExchange); in PopulateFeb2005DictionaryString()
371 Dec2005DictionaryString.Add(DXD.TrustDec2005Dictionary.BinaryExchange); in PopulateDec2005DictionaryStrings()
567 public const string BinaryExchange = "BinaryExchange"; field in System.ServiceModel.TrustDec2005Strings
H A DXD.cs1322 public XmlDictionaryString BinaryExchange; field in System.ServiceModel.TrustDictionary
1387 … this.BinaryExchange = dictionary.CreateString(ServiceModelStringsVersion1.String201, 201); in TrustApr2004Dictionary()
1442 … this.BinaryExchange = dictionary.CreateString(ServiceModelStringsVersion1.String201, 201); in TrustFeb2005Dictionary()
2291 public const string BinaryExchange = ServiceModelStringsVersion1.String201; field in System.ServiceModel.TrustApr2004Strings
2342 public const string BinaryExchange = ServiceModelStringsVersion1.String201; field in System.ServiceModel.TrustFeb2005Strings
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.IdentityModel/System/IdentityModel/
H A DXD.cs879 public XmlDictionaryString BinaryExchange; field in System.IdentityModel.TrustDictionary
968 … this.BinaryExchange = dictionary.CreateString(IdentityModelStringsVersion1.String203, 203); in TrustDec2005Dictionary()
1036 … this.BinaryExchange = LookupDictionaryString(dictionary, IdentityModelStringsVersion1.String203); in TrustDec2005Dictionary()
1120 … this.BinaryExchange = dictionary.CreateString(IdentityModelStringsVersion1.String203, 203); in TrustFeb2005Dictionary()
1175 … this.BinaryExchange = LookupDictionaryString(dictionary, IdentityModelStringsVersion1.String203); in TrustFeb2005Dictionary()
1705 public const string BinaryExchange = IdentityModelStringsVersion1.String203; field in System.IdentityModel.TrustDec2005Strings
1777 public const string BinaryExchange = IdentityModelStringsVersion1.String203; field in System.IdentityModel.TrustFeb2005Strings
/dports/security/py-pysaml2/pysaml2-7.1.0/src/saml2/ws/
H A Dwstrust.py1291 class BinaryExchange(BinaryExchangeType_): class
1302 return saml2.create_class_from_xml_string(BinaryExchange, xml_string)
1659 BinaryExchange.c_tag: binary_exchange_from_string,
1756 'BinaryExchange': BinaryExchange,
/dports/security/py-pysaml26/pysaml2-6.5.2/src/saml2/ws/
H A Dwstrust.py1291 class BinaryExchange(BinaryExchangeType_): class
1302 return saml2.create_class_from_xml_string(BinaryExchange, xml_string)
1659 BinaryExchange.c_tag: binary_exchange_from_string,
1756 'BinaryExchange': BinaryExchange,
/dports/security/py-pysaml24/pysaml2-4.9.0/src/saml2/ws/
H A Dwstrust.py1291 class BinaryExchange(BinaryExchangeType_): class
1302 return saml2.create_class_from_xml_string(BinaryExchange, xml_string)
1659 BinaryExchange.c_tag: binary_exchange_from_string,
1756 'BinaryExchange': BinaryExchange,
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.IdentityModel/
H A Dnet_4_x_System.IdentityModel.dll.sources20 System.IdentityModel.Protocols/WSTrust/BinaryExchange.cs
/dports/security/p5-Net-SAML/zxid-1.42/sg/
H A Dws-trust-1.3.sg195 BinaryExchange -> %wst:BinaryExchangeType
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/
H A DSystem.IdentityModel.cs267 public partial class BinaryExchange class
269 public BinaryExchange(byte[] binaryData, System.Uri valueType) { } in BinaryExchange() method in System.IdentityModel.Protocols.WSTrust.BinaryExchange
270 public BinaryExchange(byte[] binaryData, System.Uri valueType, System.Uri encodingType) { } in BinaryExchange() method in System.IdentityModel.Protocols.WSTrust.BinaryExchange
357 …public System.IdentityModel.Protocols.WSTrust.BinaryExchange BinaryExchange { [System.Runtime.Comp… property in System.IdentityModel.Protocols.WSTrust.WSTrustMessage
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Security/
H A DWSTrust.cs564 …if (elem.LocalName == DriverDictionary.BinaryExchange.Value && elem.NamespaceURI == DriverDictiona… in GetBinaryNegotiation()
1022 … this.DriverDictionary.BinaryExchange, this.DriverDictionary.Namespace, in WriteBinaryNegotiation()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7/
H A DSystem.IdentityModel.cs1042 public partial class BinaryExchange class
1044 public BinaryExchange(byte[] binaryData, System.Uri valueType) { } in BinaryExchange() method in System.IdentityModel.Protocols.WSTrust.BinaryExchange
1045 public BinaryExchange(byte[] binaryData, System.Uri valueType, System.Uri encodingType) { } in BinaryExchange() method in System.IdentityModel.Protocols.WSTrust.BinaryExchange
1252 …public System.IdentityModel.Protocols.WSTrust.BinaryExchange BinaryExchange { get { throw null; } … property in System.IdentityModel.Protocols.WSTrust.WSTrustMessage

12