mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-09-13 12:43:17 +00:00
naming
This commit is contained in:
32
Esiur.Security.Cryptography/AES.cs
Normal file
32
Esiur.Security.Cryptography/AES.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user