7 lines
145 B
C#

namespace SharpUI.Source.Common.Util.Encryption
{
public interface IConvertProxy
{
string ToBase64String(byte[] inArray);
}
}