Wrapped key working now.
diff --git a/library/psa_crypto.c b/library/psa_crypto.c
index 61d43f6..aa85f5e 100644
--- a/library/psa_crypto.c
+++ b/library/psa_crypto.c
@@ -3745,6 +3745,11 @@
     ret = mbedtls_cipher_setup( &operation->ctx.cipher, cipher_info );
     if( ret != 0 )
         goto exit;
+    
+    if (PSA_KEY_TYPE_IS_VENDOR_DEFINED(slot->attr.type))
+    {
+        status = psa_cipher_setup_vendor(operation, handle, alg); 
+    }
 
 #if defined(MBEDTLS_DES_C)
     if( slot->attr.type == PSA_KEY_TYPE_DES && key_bits == 128 )