mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-14 05:15:03 +02:00
Added AesCcm implementation and tests
This commit is contained in:
parent
e3bbf1708a
commit
e3fcef80f3
5 changed files with 306 additions and 0 deletions
133
SMBLibrary.Tests/AesCcmTests.cs
Normal file
133
SMBLibrary.Tests/AesCcmTests.cs
Normal file
|
@ -0,0 +1,133 @@
|
|||
/* Copyright (C) 2020 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
|
||||
*
|
||||
* You can redistribute this program and/or modify it under the terms of
|
||||
* the GNU Lesser Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later version.
|
||||
*/
|
||||
using System;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Utilities;
|
||||
|
||||
namespace SMBLibrary.Tests
|
||||
{
|
||||
public class AesCcmTests
|
||||
{
|
||||
[TestMethod]
|
||||
public void TestEncryption_Rfc3610_Packet_Vector1()
|
||||
{
|
||||
byte[] key = new byte[] { 0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF };
|
||||
|
||||
byte[] nonce = new byte[] { 0x00, 0x00, 0x00, 0x03, 0x02, 0x01, 0x00, 0xA0, 0xA1, 0xA2, 0xA3, 0xA4, 0xA5 };
|
||||
|
||||
byte[] data = new byte[] { 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E };
|
||||
byte[] associatedData = new byte[] { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07 };
|
||||
|
||||
byte[] expectedEncrypted = new byte[] { 0x58, 0x8C, 0x97, 0x9A, 0x61, 0xC6, 0x63, 0xD2, 0xF0, 0x66, 0xD0, 0xC2, 0xC0, 0xF9, 0x89, 0x80,
|
||||
0x6D, 0x5F, 0x6B, 0x61, 0xDA, 0xC3, 0x84};
|
||||
|
||||
byte[] expectedSignature = new byte[] { 0x17, 0xE8, 0xD1, 0x2C, 0xFD, 0xF9, 0x26, 0xE0 };
|
||||
|
||||
byte[] calculatedSignature;
|
||||
byte[] encrypted = AesCcm.Encrypt(key, nonce, data, associatedData, 8, out calculatedSignature);
|
||||
|
||||
Assert.IsTrue(ByteUtils.AreByteArraysEqual(expectedEncrypted, encrypted));
|
||||
Assert.IsTrue(ByteUtils.AreByteArraysEqual(expectedSignature, calculatedSignature));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void TestDecryption_Rfc3610_Packet_Vector1()
|
||||
{
|
||||
byte[] key = new byte[] { 0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF };
|
||||
|
||||
byte[] nonce = new byte[] { 0x00, 0x00, 0x00, 0x03, 0x02, 0x01, 0x00, 0xA0, 0xA1, 0xA2, 0xA3, 0xA4, 0xA5 };
|
||||
|
||||
byte[] associatedData = new byte[] { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07 };
|
||||
|
||||
byte[] encryptedData = new byte[] { 0x58, 0x8C, 0x97, 0x9A, 0x61, 0xC6, 0x63, 0xD2, 0xF0, 0x66, 0xD0, 0xC2, 0xC0, 0xF9, 0x89, 0x80,
|
||||
0x6D, 0x5F, 0x6B, 0x61, 0xDA, 0xC3, 0x84};
|
||||
|
||||
byte[] signature = new byte[] { 0x17, 0xE8, 0xD1, 0x2C, 0xFD, 0xF9, 0x26, 0xE0 };
|
||||
|
||||
byte[] expectedData = new byte[] { 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E };
|
||||
|
||||
byte[] data = AesCcm.DecryptAndAuthenticate(key, nonce, encryptedData, associatedData, signature);
|
||||
|
||||
Assert.IsTrue(ByteUtils.AreByteArraysEqual(expectedData, data));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
// Based on #1 test vector from https://docs.microsoft.com/en-us/archive/blogs/openspecification/encryption-in-smb-3-0-a-protocol-perspective
|
||||
public void TestEncryption()
|
||||
{
|
||||
byte[] key = new byte[] { 0x26, 0x1B, 0x72, 0x35, 0x05, 0x58, 0xF2, 0xE9, 0xDC, 0xF6, 0x13, 0x07, 0x03, 0x83, 0xED, 0xBF };
|
||||
byte[] nonce = new byte[] { 0x66, 0xE6, 0x9A, 0x11, 0x18, 0x92, 0x58, 0x4F, 0xB5, 0xED, 0x52 };
|
||||
|
||||
byte[] data = new byte[] {0xFE, 0x53, 0x4D, 0x42, 0x40, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x40, 0x00,
|
||||
0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0xFF, 0xFE, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x14, 0x00, 0xE4, 0x08, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x31, 0x00, 0x70, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x15, 0x01, 0x00, 0x00, 0x39, 0x00, 0x00, 0x02, 0x01, 0x00, 0x00, 0x00, 0x39, 0x02, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x53, 0x6D, 0x62, 0x33, 0x20, 0x65, 0x6E, 0x63, 0x72, 0x79, 0x70, 0x74, 0x69, 0x6F, 0x6E, 0x20,
|
||||
0x74, 0x65, 0x73, 0x74, 0x69, 0x6E, 0x67};
|
||||
|
||||
byte[] associatedData = new byte[] { 0x66, 0xE6, 0x9A, 0x11, 0x18, 0x92, 0x58, 0x4F, 0xB5, 0xED, 0x52, 0x4A, 0x74, 0x4D, 0xA3, 0xEE,
|
||||
0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x14, 0x00, 0xE4, 0x08, 0x00};
|
||||
|
||||
byte[] expectedEncrypted = new byte[] { 0x25, 0xC8, 0xFE, 0xE1, 0x66, 0x05, 0xA4, 0x37, 0x83, 0x2D, 0x1C, 0xD5, 0x2D, 0xA9, 0xF4, 0x64,
|
||||
0x53, 0x33, 0x48, 0x2A, 0x17, 0x5F, 0xE5, 0x38, 0x45, 0x63, 0xF4, 0x5F, 0xCD, 0xAF, 0xAE, 0xF3,
|
||||
0x8B, 0xC6, 0x2B, 0xA4, 0xD5, 0xC6, 0x28, 0x97, 0x99, 0x66, 0x25, 0xA4, 0x4C, 0x29, 0xBE, 0x56,
|
||||
0x58, 0xDE, 0x2E, 0x61, 0x17, 0x58, 0x57, 0x79, 0xE7, 0xB5, 0x9F, 0xFD, 0x97, 0x12, 0x78, 0xD0,
|
||||
0x85, 0x80, 0xD7, 0xFA, 0x89, 0x9E, 0x41, 0x0E, 0x91, 0x0E, 0xAB, 0xF5, 0xAA, 0x1D, 0xB4, 0x30,
|
||||
0x50, 0xB3, 0x3B, 0x49, 0x18, 0x26, 0x37, 0x75, 0x9A, 0xC1, 0x5D, 0x84, 0xBF, 0xCD, 0xF5, 0xB6,
|
||||
0xB2, 0x38, 0x99, 0x3C, 0x0F, 0x4C, 0xF4, 0xD6, 0x01, 0x20, 0x23, 0xF6, 0xC6, 0x27, 0x29, 0x70,
|
||||
0x75, 0xD8, 0x4B, 0x78, 0x03, 0x91, 0x2D, 0x0A, 0x96, 0x39, 0x63, 0x44, 0x53, 0x59, 0x5E, 0xF3,
|
||||
0xE3, 0x3F, 0xFE, 0x4E, 0x7A, 0xC2, 0xAB };
|
||||
|
||||
byte[] expectedSignature = new byte[] { 0x81, 0xA2, 0x86, 0x53, 0x54, 0x15, 0x44, 0x5D, 0xAE, 0x39, 0x39, 0x21, 0xE4, 0x4F, 0xA4, 0x2E };
|
||||
|
||||
byte[] calculatedSignature;
|
||||
byte[] encrypted = AesCcm.Encrypt(key, nonce, data, associatedData, 16, out calculatedSignature);
|
||||
Assert.IsTrue(ByteUtils.AreByteArraysEqual(expectedEncrypted, encrypted));
|
||||
Assert.IsTrue(ByteUtils.AreByteArraysEqual(expectedSignature, calculatedSignature));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
// Based on #2 test vector from https://docs.microsoft.com/en-us/archive/blogs/openspecification/encryption-in-smb-3-0-a-protocol-perspective
|
||||
public void TestDecryption()
|
||||
{
|
||||
byte[] key = new byte[] { 0x8F, 0xE2, 0xB5, 0x7E, 0xC3, 0x4D, 0x2D, 0xB5, 0xB1, 0xA9, 0x72, 0x7F, 0x52, 0x6B, 0xBD, 0xB5 };
|
||||
|
||||
byte[] nonce = new byte[] { 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00 };
|
||||
|
||||
byte[] signature = new byte[] { 0xA6, 0x01, 0x55, 0x30, 0xA1, 0x8F, 0x6D, 0x9A, 0xFF, 0xE2, 0x2A, 0xFA, 0xE8, 0xE6, 0x64, 0x84 };
|
||||
|
||||
byte[] associatedData = new byte[] { 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x14, 0x00, 0xE4, 0x08, 0x00,
|
||||
0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x14, 0x00, 0xE4, 0x08, 0x00 };
|
||||
|
||||
byte[] encyrptedData = new byte[] { 0xDB, 0xF4, 0x64, 0x35, 0xC5, 0xF1, 0x41, 0x69, 0x29, 0x3C, 0xE0, 0x79, 0xE3, 0x44, 0x47, 0x9B,
|
||||
0xF6, 0x70, 0x22, 0x7E, 0x49, 0x87, 0x3F, 0x45, 0x86, 0x72, 0xC3, 0x09, 0x8D, 0xAC, 0x46, 0x7D,
|
||||
0xD5, 0x80, 0x9F, 0x36, 0x9D, 0x67, 0x40, 0x91, 0x66, 0x51, 0x57, 0x87, 0x14, 0x83, 0xE0, 0x1F,
|
||||
0x7B, 0xEC, 0xD0, 0x20, 0x64, 0xEA, 0xC3, 0xE2, 0x35, 0xF9, 0x13, 0x66, 0x8B, 0xBC, 0x2F, 0x09,
|
||||
0x79, 0x80, 0xD4, 0xB3, 0x78, 0xF1, 0x99, 0x3E, 0xFF, 0x6E, 0x60, 0xD1, 0x77, 0x30, 0x9E, 0x5B };
|
||||
|
||||
byte[] expectedData = new byte[] { 0xFE, 0x53, 0x4D, 0x42, 0x40, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x21, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0xFF, 0xFE, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x14, 0x00, 0xE4, 0x08, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x11, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
||||
|
||||
byte[] data = AesCcm.DecryptAndAuthenticate(key, nonce, encyrptedData, associatedData, signature);
|
||||
Assert.IsTrue(ByteUtils.AreByteArraysEqual(expectedData, data));
|
||||
}
|
||||
|
||||
public void TestAll()
|
||||
{
|
||||
TestEncryption_Rfc3610_Packet_Vector1();
|
||||
TestDecryption_Rfc3610_Packet_Vector1();
|
||||
TestEncryption();
|
||||
TestDecryption();
|
||||
}
|
||||
}
|
||||
}
|
|
@ -10,6 +10,7 @@ namespace SMBLibrary.Tests
|
|||
{
|
||||
new NTLMAuthenticationTests().TestAll();
|
||||
new NTLMSigningTests().TestAll();
|
||||
new AesCcmTests().TestAll();
|
||||
new SMB2EncryptionTests().TestAll();
|
||||
new RC4Tests().TestAll();
|
||||
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
<Reference Include="System" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="AesCcmTests.cs" />
|
||||
<Compile Include="NetBiosTests.cs" />
|
||||
<Compile Include="NTFileStore\NTDirectoryFileSystemTests.cs" />
|
||||
<Compile Include="NTFileStore\NTFileStoreTests.cs" />
|
||||
|
|
170
Utilities/Cryptography/AesCcm.cs
Normal file
170
Utilities/Cryptography/AesCcm.cs
Normal file
|
@ -0,0 +1,170 @@
|
|||
/* Copyright (C) 2020 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
|
||||
*
|
||||
* You can redistribute this program and/or modify it under the terms of
|
||||
* the GNU Lesser Public License as published by the Free Software Foundation,
|
||||
* either version 3 of the License, or (at your option) any later version.
|
||||
*/
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Security.Cryptography;
|
||||
|
||||
namespace Utilities
|
||||
{
|
||||
/// <summary>
|
||||
/// Implements the Counter with CBC-MAC (CCM) detailed in RFC 3610
|
||||
/// </summary>
|
||||
public static class AesCcm
|
||||
{
|
||||
private static byte[] CalculateMac(byte[] key, byte[] nonce, byte[] data, byte[] associatedData, int signatureLength)
|
||||
{
|
||||
byte[] messageToAuthenticate = BuildB0Block(nonce, true, signatureLength, data.Length);
|
||||
if (associatedData.Length > 0)
|
||||
{
|
||||
if (associatedData.Length >= 65280)
|
||||
{
|
||||
throw new NotSupportedException("Associated data length of 65280 or more is not supported");
|
||||
}
|
||||
|
||||
byte[] associatedDataLength = BigEndianConverter.GetBytes((ushort)associatedData.Length);
|
||||
messageToAuthenticate = ByteUtils.Concatenate(messageToAuthenticate, associatedDataLength);
|
||||
messageToAuthenticate = ByteUtils.Concatenate(messageToAuthenticate, associatedData);
|
||||
int associatedDataPaddingLength = (16 - (messageToAuthenticate.Length % 16)) % 16;
|
||||
messageToAuthenticate = ByteUtils.Concatenate(messageToAuthenticate, new byte[associatedDataPaddingLength]);
|
||||
}
|
||||
|
||||
messageToAuthenticate = ByteUtils.Concatenate(messageToAuthenticate, data);
|
||||
|
||||
int dataPaddingLength = (16 - (messageToAuthenticate.Length % 16)) % 16;
|
||||
messageToAuthenticate = ByteUtils.Concatenate(messageToAuthenticate, new byte[dataPaddingLength]);
|
||||
|
||||
byte[] encrypted = AesEncrypt(key, new byte[16], messageToAuthenticate, CipherMode.CBC);
|
||||
|
||||
return ByteReader.ReadBytes(encrypted, messageToAuthenticate.Length - 16, signatureLength);
|
||||
}
|
||||
|
||||
public static byte[] Encrypt(byte[] key, byte[] nonce, byte[] data, byte[] associatedData, int signatureLength, out byte[] signature)
|
||||
{
|
||||
if (nonce.Length < 7 || nonce.Length > 13)
|
||||
{
|
||||
throw new ArgumentException("nonce length must be between 7 and 13 bytes");
|
||||
}
|
||||
|
||||
if (signatureLength < 4 || signatureLength > 16 || (signatureLength % 2 == 1))
|
||||
{
|
||||
throw new ArgumentException("signature length must be an even number between 4 and 16 bytes");
|
||||
}
|
||||
|
||||
byte[] keyStream = BuildKeyStream(key, nonce, data.Length);
|
||||
|
||||
byte[] mac = CalculateMac(key, nonce, data, associatedData, signatureLength);
|
||||
signature = ByteUtils.XOR(keyStream, 0, mac, 0, mac.Length);
|
||||
return ByteUtils.XOR(data, 0, keyStream, 16, data.Length);
|
||||
}
|
||||
|
||||
public static byte[] DecryptAndAuthenticate(byte[] key, byte[] nonce, byte[] encryptedData, byte[] associatedData, byte[] signature)
|
||||
{
|
||||
if (nonce.Length < 7 || nonce.Length > 13)
|
||||
{
|
||||
throw new ArgumentException("nonce length must be between 7 and 13 bytes");
|
||||
}
|
||||
|
||||
if (signature.Length < 4 || signature.Length > 16 || (signature.Length % 2 == 1))
|
||||
{
|
||||
throw new ArgumentException("signature length must be an even number between 4 and 16 bytes");
|
||||
}
|
||||
|
||||
byte[] keyStream = BuildKeyStream(key, nonce, encryptedData.Length);
|
||||
|
||||
byte[] data = ByteUtils.XOR(encryptedData, 0, keyStream, 16, encryptedData.Length);
|
||||
|
||||
byte[] mac = CalculateMac(key, nonce, data, associatedData, signature.Length);
|
||||
byte[] expectedSignature = ByteUtils.XOR(keyStream, 0, mac, 0, mac.Length);
|
||||
if (!ByteUtils.AreByteArraysEqual(expectedSignature, signature))
|
||||
{
|
||||
throw new CryptographicException("The computed authentication value did not match the input");
|
||||
}
|
||||
return data;
|
||||
}
|
||||
|
||||
private static byte[] BuildKeyStream(byte[] key, byte[] nonce, int dataLength)
|
||||
{
|
||||
int paddingLength = (16 - (dataLength % 16) % 16);
|
||||
int keyStreamLength = 16 + dataLength + paddingLength;
|
||||
int KeyStreamBlockCount = keyStreamLength / 16;
|
||||
byte[] keyStreamInput = new byte[keyStreamLength];
|
||||
for (int index = 0; index < KeyStreamBlockCount; index++)
|
||||
{
|
||||
byte[] aBlock = BuildABlock(nonce, index);
|
||||
ByteWriter.WriteBytes(keyStreamInput, index * 16, aBlock);
|
||||
}
|
||||
|
||||
return AesEncrypt(key, new byte[16], keyStreamInput, CipherMode.ECB);
|
||||
}
|
||||
|
||||
private static byte[] BuildB0Block(byte[] nonce, bool hasAssociatedData, int signatureLength, int messageLength)
|
||||
{
|
||||
byte[] b0 = new byte[16];
|
||||
Array.Copy(nonce, 0, b0, 1, nonce.Length);
|
||||
int lengthFieldLength = 15 - nonce.Length;
|
||||
b0[0] = ComputeFlagsByte(hasAssociatedData, signatureLength, lengthFieldLength);
|
||||
|
||||
int temp = messageLength;
|
||||
for (int index = 15; index > 15 - lengthFieldLength; index--)
|
||||
{
|
||||
b0[index] = (byte)(temp % 256);
|
||||
temp /= 256;
|
||||
}
|
||||
|
||||
return b0;
|
||||
}
|
||||
|
||||
private static byte[] BuildABlock(byte[] nonce, int blockIndex)
|
||||
{
|
||||
byte[] aBlock = new byte[16];
|
||||
Array.Copy(nonce, 0, aBlock, 1, nonce.Length);
|
||||
int lengthFieldLength = 15 - nonce.Length;
|
||||
aBlock[0] = (byte)(lengthFieldLength - 1);
|
||||
|
||||
int temp = blockIndex;
|
||||
for (int index = 15; index > 15 - lengthFieldLength; index--)
|
||||
{
|
||||
aBlock[index] = (byte)(temp % 256);
|
||||
temp /= 256;
|
||||
}
|
||||
|
||||
return aBlock;
|
||||
}
|
||||
|
||||
private static byte ComputeFlagsByte(bool hasAssociatedData, int signatureLength, int lengthFieldLength)
|
||||
{
|
||||
byte flags = 0;
|
||||
if (hasAssociatedData)
|
||||
{
|
||||
flags |= 0x40;
|
||||
}
|
||||
|
||||
flags |= (byte)(lengthFieldLength - 1); // L'
|
||||
flags |= (byte)(((signatureLength - 2) / 2) << 3); // M'
|
||||
|
||||
return flags;
|
||||
}
|
||||
|
||||
private static byte[] AesEncrypt(byte[] key, byte[] iv, byte[] data, CipherMode cipherMode)
|
||||
{
|
||||
using (MemoryStream ms = new MemoryStream())
|
||||
{
|
||||
RijndaelManaged aes = new RijndaelManaged();
|
||||
aes.Mode = cipherMode;
|
||||
aes.Padding = PaddingMode.None;
|
||||
|
||||
using (CryptoStream cs = new CryptoStream(ms, aes.CreateEncryptor(key, iv), CryptoStreamMode.Write))
|
||||
{
|
||||
cs.Write(data, 0, data.Length);
|
||||
cs.FlushFinalBlock();
|
||||
|
||||
return ms.ToArray();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -42,6 +42,7 @@
|
|||
<Compile Include="Conversion\BigEndianConverter.cs" />
|
||||
<Compile Include="Conversion\Conversion.SimpleTypes.cs" />
|
||||
<Compile Include="Conversion\LittleEndianConverter.cs" />
|
||||
<Compile Include="Cryptography\AesCcm.cs" />
|
||||
<Compile Include="Cryptography\AesCmac.cs" />
|
||||
<Compile Include="Cryptography\CRC32.cs" />
|
||||
<Compile Include="Generics\BlockingQueue.cs" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue