| 
            
              CipherKeyIVExists Method
             | 
          
        
        
            Determines if a key and initialization vector exists for the given password in the local system key cache.
            
        
        Namespace: GSF.Security.CryptographyAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntaxpublic static bool KeyIVExists(
	string password,
	int keySize
)
Public Shared Function KeyIVExists ( 
	password As String,
	keySize As Integer
) As Boolean
public:
static bool KeyIVExists(
	String^ password, 
	int keySize
)
static member KeyIVExists : 
        password : string * 
        keySize : int -> bool GSF.Security.Cryptography.Cipher.KeyIVExists = function(password, keySize);
 View SourceParameters
- password  String
 - User password used for key lookups.
 - keySize  Int32
 - Specifies the desired key size.
 
Return Value
Booleantrue if a key and initialization vector exists for the given 
password; otherwise 
false.
See Also