Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add System.Crypto methods to TIA #45

Open
benjaminloerincz opened this issue Feb 2, 2025 · 0 comments
Open

Add System.Crypto methods to TIA #45

benjaminloerincz opened this issue Feb 2, 2025 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@benjaminloerincz
Copy link
Contributor

Add these methods of namespace System, class Crypto to TIA:

  • System.Crypto.decrypt(String algorithmName, Blob privateKey, Blob initializationVector, Blob cipherText)
  • System.Crypto.decryptWithManagedIV(String algorithmName, Blob privateKey, Blob IVAndCipherText)
  • System.Crypto.encrypt(String algorithmName, Blob privateKey, Blob initializationVector, Blob clearText)
  • System.Crypto.encryptWithManagedIV(String algorithmName, Blob privateKey, Blob clearText)
  • System.Crypto.generateAesKey(Integer size)
  • System.Crypto.generateDigest(String algorithmName, Blob input)
  • System.Crypto.generateMac(String algorithmName, Blob input, Blob privateKey)
  • System.Crypto.getRandomInteger()
  • System.Crypto.getRandomLong()
  • System.Crypto.sign(String algorithmName, Blob input, Blob privateKey)
  • System.Crypto.signWithCertificate(String algorithmName, Blob input, String certDevName)
  • System.Crypto.verify(String algorithmName, Blob data, Blob signature, Blob publicKey)
  • System.Crypto.verify(String algorithmName, Blob data, Blob signature, String certDevName)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Status: No status
Development

No branches or pull requests

1 participant