enveloperb 0.3.1.2.gb499423-aarch64-linux → 0.4.0.2.g1c140fa-aarch64-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b9367e494f347c66847e281a0bdb580745f78a7353da085b47c8465e13a057dd
4
- data.tar.gz: c8dc59f05c20c79555a16d65dab7b138988af359a146b4b39435180e38f9203c
3
+ metadata.gz: fba820d67eca02fd327d056dc297dd6dca4d9851155df9e4cdb9301c701c5bb0
4
+ data.tar.gz: 71dc29bef6ca9128c680cf85b57cf14c034295ef77560513e3b99a6095c76e79
5
5
  SHA512:
6
- metadata.gz: c1feca216d5519424b0b665af15b1d3cd013a2ad1aac561f539a80d53fcb7944750fe9fa7222183f8ef1b2837d9d8ca9813d44bbf20c488bbb1abeec12be8e9a
7
- data.tar.gz: fd5b185e8444e8cac6f26ab1ce13f76cc5ba1efa43b7040133911c0690753c7a138e37309fa85229fe202ae042b724e2b8984991cb60b492f3094d6855034004
6
+ metadata.gz: 7f53e763725084c8fe7c3b2739e910ace9a90226c058c09eec3da7aca69fb475807bd764c29725623b8b7169405cffb03b98d65219c9750c9c72cf0f99cffb35
7
+ data.tar.gz: 3e46c239f883408666a8b8db750259b28295fbe87f25b257ad7312477916238c155a129203b9bf8444451246f2877434bccb2caaf90fec373ab74e1baa22f246
@@ -567,11 +567,13 @@ dependencies = [
567
567
 
568
568
  [[package]]
569
569
  name = "envelopers"
570
- version = "0.3.0"
571
- source = "git+https://github.com/cipherstash/envelopers.git#7bf15d2e417ef23975042c0e6f863b85693024e3"
570
+ version = "0.5.0"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "7c3cc2fe803e7f222ba13524bad71c8f99fb4147fec2d088010fa40ffd5c4914"
572
573
  dependencies = [
573
574
  "aes-gcm",
574
575
  "async-trait",
576
+ "aws-config",
575
577
  "aws-sdk-kms",
576
578
  "lru",
577
579
  "rand",
@@ -4,8 +4,7 @@ version = "0.0.0"
4
4
  edition = "2021"
5
5
 
6
6
  [dependencies]
7
- envelopers = { git = "https://github.com/cipherstash/envelopers.git" }
8
- #envelopers = "0.2"
7
+ envelopers = "0.5"
9
8
  lazy_static = "^0.2.2"
10
9
  rb-sys = "0.8.0"
11
10
  rutie = { git = "https://github.com/mpalmer/rutie", branch = "rb_sys" }
@@ -10,7 +10,7 @@ extern crate lazy_static;
10
10
  use aws_config;
11
11
  use aws_sdk_kms;
12
12
  use aws_types;
13
- use envelopers::{CacheOptions, EncryptedRecord, EnvelopeCipher, KMSKeyProvider, SimpleKeyProvider};
13
+ use envelopers::{CacheOptions, EncryptedRecord, EnvelopeCipher, KMSKeyProvider, SimpleKeyProvider, CachingKeyWrapper};
14
14
  use std::borrow::Cow;
15
15
  use tokio::runtime::Runtime;
16
16
  use rutie::{Class, Encoding, Hash, Module, Object, RString, Symbol, VerifiedObject, VM};
@@ -32,12 +32,12 @@ impl VerifiedObject for EnveloperbEncryptedRecord {
32
32
  }
33
33
 
34
34
  pub struct SimpleCipher {
35
- cipher: EnvelopeCipher<SimpleKeyProvider>,
35
+ cipher: EnvelopeCipher<CachingKeyWrapper<SimpleKeyProvider>>,
36
36
  runtime: Runtime,
37
37
  }
38
38
 
39
39
  pub struct AWSKMSCipher {
40
- cipher: EnvelopeCipher<KMSKeyProvider>,
40
+ cipher: EnvelopeCipher<CachingKeyWrapper<KMSKeyProvider>>,
41
41
  runtime: Runtime,
42
42
  }
43
43
 
@@ -55,7 +55,7 @@ methods!(
55
55
  key.clone_from_slice(rbkey.unwrap().to_bytes_unchecked());
56
56
 
57
57
  let provider = SimpleKeyProvider::init(key);
58
- let cipher = EnvelopeCipher::init(provider, CacheOptions::default());
58
+ let cipher = EnvelopeCipher::init(CachingKeyWrapper::new(provider, CacheOptions::default()));
59
59
 
60
60
  let klass = Module::from_existing("Enveloperb").get_nested_class("Simple");
61
61
  return klass.wrap_data(SimpleCipher{ cipher: cipher, runtime: Runtime::new().unwrap() }, &*SIMPLE_CIPHER_WRAPPER);
@@ -121,7 +121,7 @@ methods!(
121
121
 
122
122
  let kmsclient = aws_sdk_kms::Client::new(&kmsclient_config);
123
123
  let provider = KMSKeyProvider::new(kmsclient, rbkey.unwrap().to_string());
124
- let cipher = EnvelopeCipher::init(provider, CacheOptions::default().with_max_bytes(100_000));
124
+ let cipher = EnvelopeCipher::init(CachingKeyWrapper::new(provider, CacheOptions::default().with_max_bytes(100_000)));
125
125
 
126
126
  let klass = Module::from_existing("Enveloperb").get_nested_class("AWSKMS");
127
127
  return klass.wrap_data(AWSKMSCipher{ cipher: cipher, runtime: rt }, &*AWSKMS_CIPHER_WRAPPER);
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enveloperb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1.2.gb499423
4
+ version: 0.4.0.2.g1c140fa
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Matt Palmer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-28 00:00:00.000000000 Z
11
+ date: 2022-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler