Boost.Core.Tests.CertificateDataProtectorTests.ProtectAndUnProtect_ShouldBeEquivalent C# (CSharp) Method

ProtectAndUnProtect_ShouldBeEquivalent() private method

private ProtectAndUnProtect_ShouldBeEquivalent ( ) : void
return void
        public void ProtectAndUnProtect_ShouldBeEquivalent()
        {
            //// Arrange
            //var keyContext = new KeyContext(Guid.NewGuid(), new Dictionary<string, string>());

            //var protector = new CertificateDataProtector();
            //var plainData = Encoding.UTF8.GetBytes("Foo_Bar_Baz");

            //// Act
            //var cipherData = protector.Protect(plainData);

            //var roundTrip = protector.UnProtect(cipherData);

            //// Assert
            //roundTrip.Should().BeEquivalentTo(plainData);
        }
    }
CertificateDataProtectorTests