mirror of
https://github.com/wismna/ModernKeePassLib.git
synced 2025-10-03 15:40:20 -04:00
19 lines
490 B
C#
19 lines
490 B
C#
using System;
|
|
using ModernKeePassLib.Native;
|
|
|
|
namespace ModernKeePassLib.Cryptography
|
|
{
|
|
public static class ProtectedData
|
|
{
|
|
public static byte[] Unprotect(byte[] pbEnc, byte[] mPbOptEnt, DataProtectionScope currentUser)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public static byte[] Protect(byte[] pbPlain, byte[] mPbOptEnt, DataProtectionScope currentUser)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|