Example #1
0
 internal extern static int HMAC_Init_ex(ref HMAC_CTX ctx, byte[] key, int key_len, IntPtr md, IntPtr zero);
Example #2
0
 private extern static void HMAC_Init_exNative(ref HMAC_CTX ctx, byte[] key, int key_len, IntPtr md, IntPtr zero);
Example #3
0
 internal extern static unsafe int HMAC_Init(out HMAC_CTX ctx, byte *key, int key_len, IntPtr md);
Example #4
0
 private extern static unsafe int HMAC_InitNative(out HMAC_CTX ctx, byte* key, int key_len, IntPtr md);
Example #5
0
 private extern static unsafe int HMAC_FinalNative(ref HMAC_CTX ctx, byte* md, ref uint len);
Example #6
0
 internal extern static unsafe void HMAC_CTX_cleanup(ref HMAC_CTX ctx);
Example #7
0
 internal static unsafe int HMAC_Update(ref HMAC_CTX ctx, byte* data, int len)
 {
     HMAC_UpdateNative(ref ctx, data, len);
     return Success;
 }
Example #8
0
 private extern static unsafe int HMAC_InitNative(out HMAC_CTX ctx, byte *key, int key_len, IntPtr md);
Example #9
0
 private extern static unsafe int HMAC_UpdateNative(ref HMAC_CTX ctx, byte *data, int len);
Example #10
0
 internal static unsafe int HMAC_Update(ref HMAC_CTX ctx, byte *data, int len)
 {
     HMAC_UpdateNative(ref ctx, data, len);
     return(Success);
 }
Example #11
0
 internal static unsafe int HMAC_Final(ref HMAC_CTX ctx, byte *md, ref uint len)
 {
     HMAC_FinalNative(ref ctx, md, ref len);
     return(Success);
 }
Example #12
0
        // On OSX, these functions are void returning (and the man pages give no indication of what would happen if they
        // fail), but upstack code is written against surface area where they return 1 on success and 0 on error.
        // These routines call the underlying APIs and then just return success

        internal static unsafe int HMAC_Init(out HMAC_CTX ctx, byte *key, int key_len, IntPtr md)
        {
            HMAC_InitNative(out ctx, key, key_len, md);
            return(Success);
        }
Example #13
0
 private extern static void HMAC_Init_exNative(ref HMAC_CTX ctx, byte[] key, int key_len, IntPtr md, IntPtr zero);
Example #14
0
 internal static int HMAC_Init_ex(ref HMAC_CTX ctx, byte[] key, int key_len, IntPtr md, IntPtr zero)
 {
     HMAC_Init_exNative(ref ctx, key, key_len, md, zero);
     return(Success);
 }
Example #15
0
 internal extern static unsafe int HMAC_Update(ref HMAC_CTX ctx, byte *data, int len);
Example #16
0
 private extern static unsafe int HMAC_FinalNative(ref HMAC_CTX ctx, byte *md, ref uint len);
Example #17
0
 internal extern static unsafe int HMAC_Final(ref HMAC_CTX ctx, byte *md, ref uint len);
Example #18
0
 internal extern static unsafe int HMAC_Init(out HMAC_CTX ctx, byte* key, int key_len, IntPtr md);
Example #19
0
        // On OSX, these functions are void returning (and the man pages give no indication of what would happen if they
        // fail), but upstack code is written against surface area where they return 1 on success and 0 on error.
        // These routines call the underlying APIs and then just return success

        internal static unsafe int HMAC_Init(out HMAC_CTX ctx, byte* key, int key_len, IntPtr md)
        {
            HMAC_InitNative(out ctx, key, key_len, md);
            return Success;
        }
Example #20
0
 internal extern static int HMAC_Init_ex(ref HMAC_CTX ctx, byte[] key, int key_len, IntPtr md, IntPtr zero);
Example #21
0
 internal static unsafe int HMAC_Final(ref HMAC_CTX ctx, byte* md, ref uint len)
 {
     HMAC_FinalNative(ref ctx, md, ref len);
     return Success;
 }
Example #22
0
 internal extern static unsafe int HMAC_Update(ref HMAC_CTX ctx, byte* data, int len);
Example #23
0
 private extern static unsafe int HMAC_UpdateNative(ref HMAC_CTX ctx, byte* data, int len);
Example #24
0
 internal extern static unsafe int HMAC_Final(ref HMAC_CTX ctx, byte* md, ref uint len);
Example #25
0
 internal extern static unsafe void HMAC_CTX_cleanup(ref HMAC_CTX ctx);
Example #26
0
 internal static int HMAC_Init_ex(ref HMAC_CTX ctx, byte[] key, int key_len, IntPtr md, IntPtr zero)
 {
     HMAC_Init_exNative(ref ctx, key, key_len, md, zero);
     return Success;
 }