Exemplo n.º 1
0
 public override System.Collections.Generic.IEnumerable <System.Collections.Generic.KeyValuePair <byte[], byte[][]> > EnumerateRange(byte[] start, byte[] end)
 {
     foreach (var t in baseStorage.EnumerateRange(start, end))
     {
         yield return(new System.Collections.Generic.KeyValuePair <byte[], byte[][]> (t.Key, Encode(t.Value)));
     }
 }
 public override IEnumerable <KeyValuePair <byte[], byte[]> > EnumerateRange(byte[] start, byte[] end)
 {
     foreach (var t in baseStorage.EnumerateRange(start, end))
     {
         yield return(new KeyValuePair <byte[], byte[]> (t.Key, Decrypt(t.Value)));
     }
 }