DKIM: fix $dkim_key_length in verify
[exim.git] / src / src / pdkim / pdkim.h
index 5ae0f7f4593d08efed5cf423eb1ddd2fe697657d..0b21df8ab358ea5b12e1f0128cf7d828408a35d0 100644 (file)
@@ -149,8 +149,9 @@ typedef struct pdkim_signature {
   int version;
 
   /* (a=) The signature algorithm. */
-  int keytype; /* pdkim_keytypes index */
-  int hashtype;        /* pdkim_hashes index */
+  int          keytype;        /* pdkim_keytypes index */
+  unsigned     keybits;        /* size of the key */
+  int          hashtype;       /* pdkim_hashes index */
 
   /* (c=x/) Header canonicalization method. Either PDKIM_CANON_SIMPLE
      or PDKIM_CANON_RELAXED */