Exemplo n.º 1
0
 internal override string RecordDataToString()
 {
     return((byte)HashAlgorithm
            + " " + Flags
            + " " + Iterations
            + " " + ((Salt.Length == 0) ? "-" : BaseEncodingHelper.ToBase16String(Salt)));
 }
Exemplo n.º 2
0
 internal override string RecordDataToString()
 {
     return((byte)Algorithm
            + " " + BaseEncodingHelper.ToBase16String(Hit)
            + " " + BaseEncodingHelper.ToBase64String(PublicKey)
            + String.Join("", RendezvousServers.Select(s => " " + s).ToArray()));
 }
Exemplo n.º 3
0
 internal override string RecordDataToString()
 {
     return((byte)HashAlgorithm
            + " " + Flags
            + " " + Iterations
            + " " + ((Salt.Length == 0) ? "-" : BaseEncodingHelper.ToBase16String(Salt))
            + " " + BaseEncodingHelper.ToBase32HexString(NextHashedOwnerName)
            + " " + String.Join(" ", Types.ConvertAll <String>(ToString).ToArray()));
 }
Exemplo n.º 4
0
 internal override string RecordDataToString()
 {
     return(@"\# " + ((RecordData == null) ? "0" : RecordData.Length + " " + BaseEncodingHelper.ToBase16String(RecordData)));
 }
Exemplo n.º 5
0
 internal override string RecordDataToString()
 {
     return((byte)Algorithm
            + " " + (byte)FingerPrintType
            + " " + BaseEncodingHelper.ToBase16String(FingerPrint));
 }
Exemplo n.º 6
0
 internal override string RecordDataToString()
 {
     return("0x" + BaseEncodingHelper.ToBase16String(RecordData));
 }