Skip to content

Commit bf7eecb

Browse files
authored
Merge pull request #77025 from vladvino/patch-16
Added a new extension method
2 parents 854468c + fa63210 commit bf7eecb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/api-management/api-management-policy-expressions.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,8 @@ A variable named `context` is implicitly available in every policy [expression](
237237
|byte[] Encrypt(input: this byte[], alg: System.Security.Cryptography.SymmetricAlgorithm, key:byte[], iv:byte[])|input - plaintext to be encrypted<br /><br />alg - encryption algorithm<br /><br />key - encryption key<br /><br />iv - initialization vector<br /><br />Returns encrypted plaintext.|
238238
|byte[] Decrypt(input: this byte[], alg: string, key:byte[], iv:byte[])|input - cypher text to be decrypted<br /><br />alg - name of a symmetric encryption algorithm<br /><br />key - encryption key<br /><br />iv - initialization vector<br /><br />Returns plaintext.|
239239
|byte[] Decrypt(input: this byte[], alg: System.Security.Cryptography.SymmetricAlgorithm)|input - cypher text to be decrypted<br /><br />alg - encryption algorithm<br /><br />Returns plaintext.|
240-
|byte[] Decrypt(input: this byte[], alg: System.Security.Cryptography.SymmetricAlgorithm, key:byte[], iv:byte[])|input - input - cypher text to be decrypted<br /><br />alg - encryption algorithm<br /><br />key - encryption key<br /><br />iv - initialization vector<br /><br />Returns plaintext.|
240+
|byte[] Decrypt(input: this byte[], alg: System.Security.Cryptography.SymmetricAlgorithm, key:byte[], iv:byte[])|input - cypher text to be decrypted<br /><br />alg - encryption algorithm<br /><br />key - encryption key<br /><br />iv - initialization vector<br /><br />Returns plaintext.|
241+
|bool VerifyNoRevocation(input: this System.Security.Cryptography.X509Certificates.X509Certificate2)|Performs a X.509 chain validation without checking certificate revocation status.<br /><br />input - certificate object<br /><br />Returns `true` if the validation succeeds; `false` if the validation fails.|
241242

242243

243244
## Next steps

0 commit comments

Comments
 (0)