mirror of
https://github.com/wismna/ModernKeePassLib.git
synced 2025-10-03 23:50: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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|