Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WCF / IdentityModel / System / IdentityModel / Diagnostics / DigestTraceRecordHelper.cs / 1305376 / DigestTraceRecordHelper.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.IdentityModel.Diagnostics { using System; using System.Diagnostics; using System.Globalization; using System.IO; using System.Runtime.Diagnostics; using System.Security.Cryptography; using System.ServiceModel.Diagnostics; using System.Xml; class DigestTraceRecord : TraceRecord { MemoryStream _logStream; HashAlgorithm _hash; string _traceName; const string Empty = "Empty"; const string CanonicalElementString = "CanonicalElementString"; const string CanonicalElementStringLength = "CanonicalElementStringLength"; const string CanonicalOctets = "CanonicalOctets"; const string CanonicalOctetsLength = "CanonicalOctetsLength"; const string CanonicalOctetsHash = "CanonicalOctetsHash"; const string CanonicalOctetsHashLength = "CanonicalOctetsHashLength"; const string Key = "Key"; const string Length = "Length"; const string FirstByte = "FirstByte"; const string LastByte = "LastByte"; internal DigestTraceRecord(string traceName, MemoryStream logStream, HashAlgorithm hash) { if (String.IsNullOrEmpty(traceName)) _traceName = Empty; else _traceName = traceName; _logStream = logStream; _hash = hash; } internal override string EventId { get { return TraceRecord.EventIdBase + _traceName + TraceRecord.NamespaceSuffix; } } internal override void WriteTo(XmlWriter writer) { base.WriteTo(writer); // // canonical element string // byte[] contentBuffer = _logStream.GetBuffer(); string contentAsString = System.Text.Encoding.UTF8.GetString(contentBuffer, 0, (int)_logStream.Length); writer.WriteElementString(CanonicalElementStringLength, contentAsString.Length.ToString(CultureInfo.InvariantCulture)); writer.WriteComment(CanonicalElementString + ":" + contentAsString); // // canonical element base64 format // writer.WriteElementString(CanonicalOctetsLength, contentBuffer.Length.ToString(CultureInfo.InvariantCulture)); writer.WriteElementString(CanonicalOctets, Convert.ToBase64String(contentBuffer)); // // Hash // writer.WriteElementString(CanonicalOctetsHashLength, _hash.Hash.Length.ToString(CultureInfo.InvariantCulture)); writer.WriteElementString(CanonicalOctetsHash, Convert.ToBase64String(_hash.Hash)); // // Key: this will only be printed out for the symmetric key case // if (_hash is KeyedHashAlgorithm) { KeyedHashAlgorithm keyedHash = _hash as KeyedHashAlgorithm; byte[] key = keyedHash.Key; writer.WriteStartElement(Key); // start the key element writer.WriteElementString(Length, key.Length.ToString(CultureInfo.InvariantCulture)); // key length writer.WriteElementString(FirstByte, key[0].ToString(CultureInfo.InvariantCulture)); // first byte of the key writer.WriteElementString(LastByte, key[key.Length - 1].ToString(CultureInfo.InvariantCulture)); // last byte of the key writer.WriteEndElement(); // close the key element } } } internal static class DigestTraceRecordHelper { const string DigestTrace = "DigestTrace"; static bool _shouldTraceDigest = false; static bool _initialized = false; internal static bool ShouldTraceDigest { get { if (!_initialized) InitializeShouldTraceDigest(); return _shouldTraceDigest; } } static void InitializeShouldTraceDigest() { // // Log the digest only if // 1.Users ask for verbose AND // 2.Users are fine with logging Pii ( private identity information ) - todo // if (DiagnosticUtility.DiagnosticTrace != null && DiagnosticUtility.DiagnosticTrace.TraceSource != null && DiagnosticUtility.DiagnosticTrace.TraceSource.ShouldLogPii && DiagnosticUtility.ShouldTraceVerbose) { _shouldTraceDigest = true; } _initialized = true; } internal static void TraceDigest(MemoryStream logStream, HashAlgorithm hash) { if (DigestTraceRecordHelper.ShouldTraceDigest) { TraceUtility.TraceEvent(TraceEventType.Verbose, TraceCode.IdentityModel, SR.GetString(SR.TraceCodeIdentityModel), new DigestTraceRecord(DigestTrace, logStream, hash), null, null); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ProxyHelper.cs
- WebPartConnectionsEventArgs.cs
- Vector3DAnimationBase.cs
- COM2FontConverter.cs
- XmlSchemaFacet.cs
- HttpListenerPrefixCollection.cs
- PropertyManager.cs
- TcpChannelHelper.cs
- BuildProviderAppliesToAttribute.cs
- Internal.cs
- WebPermission.cs
- ISAPIApplicationHost.cs
- XPathParser.cs
- OleDbFactory.cs
- SizeIndependentAnimationStorage.cs
- HebrewCalendar.cs
- PerspectiveCamera.cs
- GridLengthConverter.cs
- EventHandlerService.cs
- DirectionalLight.cs
- ItemChangedEventArgs.cs
- Span.cs
- EventLogPermissionEntryCollection.cs
- XsdDateTime.cs
- ThicknessKeyFrameCollection.cs
- SessionStateUtil.cs
- CryptoProvider.cs
- CommandHelper.cs
- FormClosingEvent.cs
- ThousandthOfEmRealPoints.cs
- DataContractJsonSerializerOperationBehavior.cs
- StringFormat.cs
- ResourceProviderFactory.cs
- StoreItemCollection.cs
- GridEntry.cs
- ReaderWriterLockWrapper.cs
- SQLDecimalStorage.cs
- HttpSessionStateWrapper.cs
- CrossContextChannel.cs
- SessionEndedEventArgs.cs
- DataGridViewRowStateChangedEventArgs.cs
- __TransparentProxy.cs
- _SafeNetHandles.cs
- StateManagedCollection.cs
- BorderGapMaskConverter.cs
- SettingsAttributeDictionary.cs
- RadioButtonFlatAdapter.cs
- ClockGroup.cs
- FlowLayoutSettings.cs
- Type.cs
- RequestStatusBarUpdateEventArgs.cs
- ExclusiveTcpTransportManager.cs
- ProfileSettings.cs
- Debug.cs
- DiscoveryClientReferences.cs
- StringResourceManager.cs
- Int32CollectionConverter.cs
- RoutedEventValueSerializer.cs
- GenericWebPart.cs
- ControlValuePropertyAttribute.cs
- StrongName.cs
- ToolstripProfessionalRenderer.cs
- EdmItemCollection.cs
- SharedDp.cs
- ExecutionEngineException.cs
- Context.cs
- BackoffTimeoutHelper.cs
- HttpFileCollectionBase.cs
- GlyphTypeface.cs
- SimpleTextLine.cs
- PolyBezierSegment.cs
- XPathNodeList.cs
- WorkflowTimerService.cs
- Msec.cs
- SplineKeyFrames.cs
- Task.cs
- Light.cs
- EntityContainerEmitter.cs
- TextEffectResolver.cs
- Style.cs
- Run.cs
- TransformerInfo.cs
- exports.cs
- CodeMethodInvokeExpression.cs
- _NestedSingleAsyncResult.cs
- IIS7UserPrincipal.cs
- ToolStripDesigner.cs
- PathStreamGeometryContext.cs
- SingleStorage.cs
- BufferModesCollection.cs
- ValueSerializer.cs
- DbConnectionOptions.cs
- CompilerInfo.cs
- AsymmetricKeyExchangeFormatter.cs
- DefaultPropertyAttribute.cs
- Literal.cs
- IISMapPath.cs
- ItemAutomationPeer.cs
- RotateTransform3D.cs
- WsdlImporterElementCollection.cs