Raven.Bundles.Encryption.Codec.GetIVLength C# (CSharp) Метод

GetIVLength() приватный Метод

private GetIVLength ( ) : int
Результат int
		private int GetIVLength()
		{
			if (encryptionIVSize == null)
			{
				// This will force detection of the iv size
				GetCryptoProvider(null);
			}

			return encryptionIVSize.Value;
		}