add missing check on output_size in psa_cipher_update func
diff --git a/library/psa_crypto.c b/library/psa_crypto.c
index 2672627..0e2d6da 100644
--- a/library/psa_crypto.c
+++ b/library/psa_crypto.c
@@ -1445,7 +1445,8 @@
 {
     int ret = MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE;
 
-    if( output_size < input_length )
+    if( ( ( PSA_ALG_IS_STREAM_CIPHER( operation->alg ) ) && ( output_size < input_length ) )
+        || ( ( PSA_ALG_IS_BLOCK_CIPHER(operation->alg)) && ( output_size < ((operation->ctx.cipher.unprocessed_len + input_length)/16)*16 ) ) )
         return ( PSA_ERROR_BUFFER_TOO_SMALL );
 
     ret = mbedtls_cipher_update( &operation->ctx.cipher, input,