Raven.Bundles.Encryption.Codec.GetSaltFromEncryptionKey C# (CSharp) Method

GetSaltFromEncryptionKey() private static method

private static GetSaltFromEncryptionKey ( byte key ) : byte[]
key byte
return byte[]
		private static byte[] GetSaltFromEncryptionKey(byte[] key)
		{
			return SHA1.Create().ComputeHash(key);
		}