예제 #1
0
파일: Native.cs 프로젝트: huaan21/crimson
 public extern static bool EVP_CipherUpdate(SafeCipherContextHandle ctx, IntPtr outb, out int outl, IntPtr inb, int inl);
예제 #2
0
파일: Native.cs 프로젝트: huaan21/crimson
 public extern static bool EVP_CIPHER_CTX_set_padding(SafeCipherContextHandle x, int padding);
예제 #3
0
파일: Native.cs 프로젝트: huaan21/crimson
 public extern static bool EVP_CipherInit_ex(SafeCipherContextHandle ctx, SafeCipherHandle type, IntPtr impl, IntPtr key, IntPtr iv, CipherOperation enc);
예제 #4
0
파일: Native.cs 프로젝트: huaan21/crimson
 public extern static bool EVP_CIPHER_CTX_set_key_length(SafeCipherContextHandle x, int keylen);
예제 #5
0
파일: Native.cs 프로젝트: symform/crimson
 public static extern bool EVP_CipherInit_ex(SafeCipherContextHandle ctx, SafeCipherHandle type, IntPtr impl, IntPtr key, IntPtr iv, CipherOperation enc);
예제 #6
0
파일: Native.cs 프로젝트: symform/crimson
 public static extern bool EVP_CIPHER_CTX_set_padding(SafeCipherContextHandle x, int padding);
예제 #7
0
파일: Native.cs 프로젝트: symform/crimson
 public static extern bool EVP_CIPHER_CTX_set_key_length(SafeCipherContextHandle x, int keylen);
예제 #8
0
파일: Native.cs 프로젝트: symform/crimson
 public static extern bool EVP_CipherUpdate(SafeCipherContextHandle ctx, IntPtr outb, out int outl, IntPtr inb, int inl);