You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dapr Crypto API should be able to encrypt large files and return in a timely fashion or at least document payload size limitations.
Actual Behavior
The encrypt request never returns a response for a payload of ~1MB+ with the request below (tested with the Go and dotnet SDKs):
varclient=newDaprClientBuilder().Build();conststringcomponentName="my-crypto-component";conststringkeyName="my-key";conststringplainText="LARGE PAYLOAD";//Encode the string to a UTF-8 byte array and encrypt itvarplainTextBytes=Encoding.UTF8.GetBytes(plainText);varencryptedBytesResult=awaitclient.EncryptAsync(componentName,plainTextBytes,keyName,newEncryptionOptions(KeyWrapAlgorithm.Rsa));
The text was updated successfully, but these errors were encountered:
In what area(s)?
What version of Dapr?
1.14.4
Expected Behavior
Dapr Crypto API should be able to encrypt large files and return in a timely fashion or at least document payload size limitations.
Actual Behavior
The encrypt request never returns a response for a payload of ~1MB+ with the request below (tested with the Go and dotnet SDKs):
The text was updated successfully, but these errors were encountered: