Skip to content

Instantly share code, notes, and snippets.

@joseoliv
Created June 15, 2018 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joseoliv/981d08d1bb2c2723c5638a4f47b09f85 to your computer and use it in GitHub Desktop.
Save joseoliv/981d08d1bb2c2723c5638a4f47b09f85 to your computer and use it in GitHub Desktop.
Prototype that can convert any tainted to untainted value
package untainted
object TaintedToUntainted
func toUntaintedSql: String@tainted(sql) s -> String@untainted(sql) = s;
func toUntaintedHtml: String@tainted(html) s -> String@untainted(html) = s;
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment