Esempio n. 1
0
 internal extern static int HMAC_Init_ex(ref HMAC_CTX ctx, byte[] key, int key_len, IntPtr md, IntPtr zero);
Esempio n. 2
0
 private extern static void HMAC_Init_exNative(ref HMAC_CTX ctx, byte[] key, int key_len, IntPtr md, IntPtr zero);
Esempio n. 3
0
 internal extern static unsafe int HMAC_Init(out HMAC_CTX ctx, byte *key, int key_len, IntPtr md);
Esempio n. 4
0
 private extern static unsafe int HMAC_InitNative(out HMAC_CTX ctx, byte* key, int key_len, IntPtr md);
Esempio n. 5
0
 private extern static unsafe int HMAC_FinalNative(ref HMAC_CTX ctx, byte* md, ref uint len);
Esempio n. 6
0
 internal extern static unsafe void HMAC_CTX_cleanup(ref HMAC_CTX ctx);
Esempio n. 7
0
 internal static unsafe int HMAC_Update(ref HMAC_CTX ctx, byte* data, int len)
 {
     HMAC_UpdateNative(ref ctx, data, len);
     return Success;
 }
Esempio n. 8
0
 private extern static unsafe int HMAC_InitNative(out HMAC_CTX ctx, byte *key, int key_len, IntPtr md);
Esempio n. 9
0
 private extern static unsafe int HMAC_UpdateNative(ref HMAC_CTX ctx, byte *data, int len);
Esempio n. 10
0
 internal static unsafe int HMAC_Update(ref HMAC_CTX ctx, byte *data, int len)
 {
     HMAC_UpdateNative(ref ctx, data, len);
     return(Success);
 }
Esempio n. 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);
 }
Esempio n. 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);
        }
Esempio n. 13
0
 private extern static void HMAC_Init_exNative(ref HMAC_CTX ctx, byte[] key, int key_len, IntPtr md, IntPtr zero);
Esempio n. 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);
 }
Esempio n. 15
0
 internal extern static unsafe int HMAC_Update(ref HMAC_CTX ctx, byte *data, int len);
Esempio n. 16
0
 private extern static unsafe int HMAC_FinalNative(ref HMAC_CTX ctx, byte *md, ref uint len);
Esempio n. 17
0
 internal extern static unsafe int HMAC_Final(ref HMAC_CTX ctx, byte *md, ref uint len);
Esempio n. 18
0
 internal extern static unsafe int HMAC_Init(out HMAC_CTX ctx, byte* key, int key_len, IntPtr md);
Esempio n. 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;
        }
Esempio n. 20
0
 internal extern static int HMAC_Init_ex(ref HMAC_CTX ctx, byte[] key, int key_len, IntPtr md, IntPtr zero);
Esempio n. 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;
 }
Esempio n. 22
0
 internal extern static unsafe int HMAC_Update(ref HMAC_CTX ctx, byte* data, int len);
Esempio n. 23
0
 private extern static unsafe int HMAC_UpdateNative(ref HMAC_CTX ctx, byte* data, int len);
Esempio n. 24
0
 internal extern static unsafe int HMAC_Final(ref HMAC_CTX ctx, byte* md, ref uint len);
Esempio n. 25
0
 internal extern static unsafe void HMAC_CTX_cleanup(ref HMAC_CTX ctx);
Esempio n. 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;
 }