ble_att_svr: fix keysize check for SC Only mode

Keysize is kept in bytes and not bits
diff --git a/nimble/host/src/ble_att_svr.c b/nimble/host/src/ble_att_svr.c
index 7b2611a..4fdf27e 100644
--- a/nimble/host/src/ble_att_svr.c
+++ b/nimble/host/src/ble_att_svr.c
@@ -288,7 +288,7 @@
      * require it on level 4
      */
     if (MYNEWT_VAL(BLE_SM_SC_ONLY)) {
-        if (sec_state.key_size != 128 ||
+        if (sec_state.key_size != 16 ||
             !sec_state.authenticated ||
             !sec_state.encrypted) {
             return BLE_ATT_ERR_INSUFFICIENT_KEY_SZ;