Fixed bug in SetEncryptParam:  should be checking that encrypParamSize is
not equal to the current encrypt param's size (was check <).
diff --git a/sysapi/sysapi/EncryptParam.c b/sysapi/sysapi/EncryptParam.c
index 54cb1ed..50fe424 100644
--- a/sysapi/sysapi/EncryptParam.c
+++ b/sysapi/sysapi/EncryptParam.c
@@ -86,7 +86,7 @@
 
         if( rval == TSS2_RC_SUCCESS )
         {
-            if( encryptParamSize < currEncryptParamSize )
+            if( encryptParamSize != currEncryptParamSize )
             {
                 return TSS2_SYS_RC_BAD_SIZE;
             }