You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
512 B

using Microsoft.VisualStudio.TestTools.UnitTesting;
using Ru.Pfr.Crypto.Base64encoder;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ru.Pfr.Crypto.Base64encoder.Tests
{
[TestClass()]
public class Encoder64Tests
{
[TestMethod()]
public void EncodeTo64Test()
{
String result = Encoder64.EncodeTo64("MyPassword");
Console.WriteLine(result);
}
}
}