2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-06-30 22:53:11 +00:00
Files
esiur-dotnet/Esiur.Generator/AES.cs
2024-03-25 17:59:55 +03:00

33 lines
687 B
C#

using System;
using System.Collections.Generic;
using System.Security.Cryptography;
using System.Text;
namespace Esiur.Security.Cryptography
{
public class AES : ISymetricCipher
{
Aes aes = Aes.Create();
public ushort Identifier => 1;
public byte[] Decrypt(byte[] data)
{
throw new NotImplementedException();
}
public byte[] Encrypt(byte[] data)
{
throw new NotImplementedException();
}
public byte[] SetKey(byte[] key)
{
//aes.Key = key;
//aes.IV = key;
throw new NotImplementedException();
}
}
}