From ee9ec0f9a7f24bf58b660c786eb200da888dc9f7 Mon Sep 17 00:00:00 2001 From: jsteube Date: Sun, 21 Jan 2018 15:32:37 +0100 Subject: [PATCH] Add JWT esalt datatype --- OpenCL/inc_types.cl | 7 +++++++ include/interface.h | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/OpenCL/inc_types.cl b/OpenCL/inc_types.cl index 8f9127b52..ee2b89a60 100644 --- a/OpenCL/inc_types.cl +++ b/OpenCL/inc_types.cl @@ -1495,6 +1495,13 @@ typedef struct apple_secure_notes } apple_secure_notes_t; +typedef struct jwt +{ + u32 salt_buf[1024]; + u32 salt_len; + +} jwt_t; + typedef struct pdf14_tmp { u32 digest[4]; diff --git a/include/interface.h b/include/interface.h index 7093c141c..7c8947125 100644 --- a/include/interface.h +++ b/include/interface.h @@ -497,6 +497,13 @@ typedef struct apple_secure_notes } apple_secure_notes_t; +typedef struct jwt +{ + u32 salt_buf[1024]; + u32 salt_len; + +} jwt_t; + typedef struct luks_tmp { u32 ipad32[8];