public void AsAsync_GivenAnObjectThatImplementsIAsyncCryptoTheSameObjectIsReturned()
        {
            var crypto = new TestCrypto();

            var asyncCrypto = crypto.AsAsync();

            Assert.AreEqual(asyncCrypto, crypto);
        }