85b362e8cd
- add the standalone HrynCo.Common solution and projects - include the shared common library source and tests - add package metadata and a repo gitignore
9 lines
157 B
C#
9 lines
157 B
C#
namespace HrynCo.Common.Security;
|
|
|
|
public interface ISecretProtector
|
|
{
|
|
string Protect(string plaintext);
|
|
|
|
string Unprotect(string protectedValue);
|
|
}
|