Temporary fix for size of cipher contexts
diff --git a/include/polarssl/ssl.h b/include/polarssl/ssl.h
index 16643b2..0227bb8 100644
--- a/include/polarssl/ssl.h
+++ b/include/polarssl/ssl.h
@@ -404,9 +404,9 @@
md_context_t md_ctx_enc; /*!< MAC (encryption) */
md_context_t md_ctx_dec; /*!< MAC (decryption) */
- /* 151 == 604 bytes is size of gcm_context (largest context in PolarSSL) */
- uint32_t ctx_enc[151]; /*!< encryption context */
- uint32_t ctx_dec[151]; /*!< decryption context */
+ /* 154 == 616 bytes is size of gcm_context (largest context in PolarSSL) */
+ uint32_t ctx_enc[154]; /*!< encryption context */
+ uint32_t ctx_dec[154]; /*!< decryption context */
/*
* Session specific compression layer