Why is this an issue?

Pragma protect directives should not define unknown keyword options.

How to fix it

Code examples

Noncompliant code example

// Unknown keyword option 'foo'
`pragma protect encoding=(enctype="base64", foo="bar")

Compliant solution

`pragma protect encoding=(enctype="base64", bytes=6)