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
{{ message }}
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
@erezvani1529 I have to add key in resolver so instead of key as string, I have to add RsaKey object in resolver.
RsaKey key = new RsaKey("mykey");
LocalResolver resolver = new LocalResolver();
resolver.Add(key); -- here I have to add key object
Or
LocalResolver resolver = new LocalResolver();
var keyResolver = resolver.ResolveKeyAsync("myKey", CancellationToken.None).Result;
BlobEncryptionPolicy downloadPolicy = new BlobEncryptionPolicy(null, resolver);
Both above code is not working. I'm trying with different thread.
The text was updated successfully, but these errors were encountered: