Exemple #1
0
 internal Cipher(IntPtr ptr, bool owner)
     : base(ptr, owner)
 {
     raw = (EVP_CIPHER)Marshal.PtrToStructure(this.ptr, typeof(EVP_CIPHER));
 }
Exemple #2
0
		internal Cipher(IntPtr ptr, bool owner) : base(ptr, owner) 
		{
			this.raw = (EVP_CIPHER)Marshal.PtrToStructure(this.ptr, typeof(EVP_CIPHER));
		}
Exemple #3
0
 public static extern int EVP_CipherInit_ex(EVP_CIPHER_CTX *handle, EVP_CIPHER *cipher, IntPtr engine, byte[] key, byte[] iv, int enc);