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