MCPcopy Index your code
hub / github.com/CCob/BOF.NET / SendHashes

Method SendHashes

managed/BOFNET/BeaconObject.cs:101–110  ·  view source on GitHub ↗
(UserHash[] userHashes)

Source from the content-addressed store, hash-verified

99 }
100
101 protected void SendHashes(UserHash[] userHashes) {
102
103 var sw = new StringWriter();
104 foreach (var userHash in userHashes) {
105 sw.Write($"{userHash.Username}:{userHash.Rid}::{userHash.Hash}:::\n");
106 }
107
108 byte[] hashesData = Encoding.UTF8.GetBytes(sw.ToString());
109 BeaconCallbackWriter(OutputTypes.CALLBACK_HASHDUMP, hashesData, hashesData.Length);
110 }
111 }
112}

Callers

nothing calls this directly

Calls 2

WriteMethod · 0.80
ToStringMethod · 0.80

Tested by

no test coverage detected