queue-runtime 0.2.0

Multi-provider queue runtime for Queue-Keeper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
# Cryptography Module


The cryptography module provides message-level security to prevent man-in-the-middle (MITM) attacks on messages stored in cloud queues. It implements authenticated encryption to ensure both confidentiality (encryption) and integrity (authentication) of message content.

## Overview


**Purpose**: Protect messages from tampering and eavesdropping between sender and receiver.

**Threat Model**: Malicious actor with access to the queue infrastructure can:

- Read message contents
- Modify message payloads
- Replay old messages
- Inject fake messages

**Defense Strategy**: Authenticated encryption with associated data (AEAD) using application-provided keys.

## Core Domain Identifiers


### EncryptionKeyId


Identifier for encryption keys, enabling key rotation without breaking existing messages.

**Type Definition**:

```rust
pub struct EncryptionKeyId(String);
```

**Purpose**:

- Identifies which key was used to encrypt a message
- Enables key rotation (multiple keys active simultaneously)
- Stored in message metadata for decryption key lookup

**Construction**:

```rust
/// Create key ID from string
pub fn new(id: impl Into<String>) -> Self;

/// Get key ID as string reference
pub fn as_str(&self) -> &str;
```

**Usage**:

```rust
let key_id = EncryptionKeyId::new("prod-key-2026-01");
```

### Nonce


Cryptographic nonce (number used once) for AEAD operations. Must be unique for each encryption operation with the same key.

**Type Definition**:

```rust
pub struct Nonce([u8; 12]); // 96-bit nonce for AES-GCM
```

**Purpose**:

- Ensures same plaintext encrypts to different ciphertext
- Prevents attacks exploiting repeated nonces
- Required for AEAD cipher security

**Construction**:

```rust
/// Generate random nonce
pub fn random() -> Self;

/// Get nonce as byte slice
pub fn as_bytes(&self) -> &[u8; 12];
```

### AuthenticationTag


Authentication tag produced by AEAD encryption, verifies message integrity.

**Type Definition**:

```rust
pub struct AuthenticationTag([u8; 16]); // 128-bit tag for AES-GCM
```

**Purpose**:

- Cryptographic proof that message hasn't been tampered with
- Verified during decryption before returning plaintext
- Failure to verify indicates tampering or corruption

---

## Responsibilities


### CryptoProvider Trait


**Responsibilities**:

- Knows: Encryption algorithms, key formats, nonce generation
- Does: Encrypts plaintext, decrypts ciphertext, generates authentication tags

**Collaborators**:

- KeyProvider (retrieves encryption keys)
- Message (encrypts/decrypts message bodies)

**Roles**:

- Encryptor: Transforms plaintext to ciphertext with authentication
- Decryptor: Transforms ciphertext to plaintext after verification
- Validator: Verifies message authenticity before decryption

**Operations**:

```rust
#[async_trait]

pub trait CryptoProvider: Send + Sync {
    /// Encrypt plaintext with authenticated encryption
    ///
    /// # Arguments
    /// * `key_id` - Identifier for encryption key to use
    /// * `plaintext` - Data to encrypt
    /// * `associated_data` - Additional data to authenticate (not encrypted)
    ///
    /// # Returns
    /// Encrypted message with ciphertext, nonce, and authentication tag
    async fn encrypt(
        &self,
        key_id: &EncryptionKeyId,
        plaintext: &[u8],
        associated_data: &[u8],
    ) -> Result<EncryptedMessage, CryptoError>;

    /// Decrypt and authenticate ciphertext
    ///
    /// # Arguments
    /// * `encrypted` - Encrypted message with metadata
    ///
    /// # Returns
    /// Original plaintext if authentication succeeds
    ///
    /// # Errors
    /// Returns AuthenticationFailed if message has been tampered with
    async fn decrypt(
        &self,
        encrypted: &EncryptedMessage,
    ) -> Result<Vec<u8>, CryptoError>;

    /// Sign message for integrity verification (without encryption)
    ///
    /// # Arguments
    /// * `key_id` - Identifier for signing key
    /// * `data` - Data to sign
    ///
    /// # Returns
    /// HMAC signature of data
    async fn sign(
        &self,
        key_id: &EncryptionKeyId,
        data: &[u8],
    ) -> Result<Signature, CryptoError>;

    /// Verify message signature
    ///
    /// # Arguments
    /// * `key_id` - Identifier for verification key
    /// * `data` - Data that was signed
    /// * `signature` - Signature to verify
    ///
    /// # Returns
    /// Ok(()) if signature is valid, error otherwise
    async fn verify(
        &self,
        key_id: &EncryptionKeyId,
        data: &[u8],
        signature: &Signature,
    ) -> Result<(), CryptoError>;
}
```

---

### KeyProvider Trait


**Responsibilities**:

- Knows: Encryption keys, key metadata, key rotation schedule
- Does: Retrieves keys by ID, validates key access, manages key lifecycle

**Collaborators**:

- CryptoProvider (provides keys for encryption/decryption)
- Application secret stores (Azure Key Vault, AWS Secrets Manager, etc.)

**Roles**:

- Key Store: Manages cryptographic key material
- Access Control: Enforces key usage policies
- Rotation Manager: Supports multiple active keys for rotation

**Operations**:

```rust
#[async_trait]

pub trait KeyProvider: Send + Sync {
    /// Retrieve encryption key by ID
    ///
    /// # Arguments
    /// * `key_id` - Identifier of key to retrieve
    ///
    /// # Returns
    /// Raw key material for encryption/decryption
    ///
    /// # Security
    /// Keys MUST be protected in memory (use zeroizing types)
    /// Keys MUST NOT be logged or exposed in error messages
    async fn get_key(&self, key_id: &EncryptionKeyId) -> Result<EncryptionKey, CryptoError>;

    /// Get current active key ID for new messages
    ///
    /// # Returns
    /// Key ID to use for encrypting new messages
    ///
    /// # Rotation
    /// Returns newest key during rotation, enabling smooth key rollover
    async fn current_key_id(&self) -> Result<EncryptionKeyId, CryptoError>;

    /// List all valid key IDs (for decryption of old messages)
    ///
    /// # Returns
    /// All key IDs that can decrypt messages (current + historical)
    async fn valid_key_ids(&self) -> Result<Vec<EncryptionKeyId>, CryptoError>;
}
```

---

### EncryptedMessage Type


**Responsibilities**:

- Knows: Ciphertext, encryption metadata, authentication tag
- Does: Serializes to wire format, deserializes from wire format

**Structure**:

```rust
pub struct EncryptedMessage {
    /// Key ID used for encryption (for decryption key lookup)
    pub key_id: EncryptionKeyId,

    /// Encrypted message body
    pub ciphertext: Vec<u8>,

    /// Nonce used for encryption (required for decryption)
    pub nonce: Nonce,

    /// Authentication tag proving integrity
    pub auth_tag: AuthenticationTag,

    /// Timestamp when message was encrypted (for freshness validation)
    pub encrypted_at: i64, // Unix timestamp

    /// Version of encryption format (for future upgrades)
    pub version: u8,
}
```

**Operations**:

```rust
impl EncryptedMessage {
    /// Serialize to bytes for transmission
    pub fn to_bytes(&self) -> Vec<u8>;

    /// Deserialize from bytes
    pub fn from_bytes(data: &[u8]) -> Result<Self, CryptoError>;

    /// Check if message is within freshness window
    pub fn is_fresh(&self, max_age: Duration) -> bool;
}
```

---

### EncryptionKey Type


**Responsibilities**:

- Knows: Raw key material, key metadata
- Does: Provides key bytes for cryptographic operations

**Security Properties**:

- Key material zeroed on drop (use `zeroize` crate)
- Never serialized or logged
- Debug implementation redacted

**Structure**:

```rust
use zeroize::Zeroizing;

pub struct EncryptionKey {
    /// Key ID for identification
    id: EncryptionKeyId,

    /// Raw key material (256-bit for AES-256-GCM)
    key_material: Zeroizing<Vec<u8>>,

    /// Key creation timestamp
    created_at: i64,

    /// Optional key expiration
    expires_at: Option<i64>,
}

impl EncryptionKey {
    /// Get key ID
    pub fn id(&self) -> &EncryptionKeyId;

    /// Get key material as bytes
    pub fn as_bytes(&self) -> &[u8];

    /// Check if key is expired
    pub fn is_expired(&self) -> bool;
}

impl Debug for EncryptionKey {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.debug_struct("EncryptionKey")
            .field("id", &self.id)
            .field("key_material", &"<REDACTED>")
            .field("created_at", &self.created_at)
            .field("expires_at", &self.expires_at)
            .finish()
    }
}
```

---

## Message Integration


### Message Envelope Format


Messages support both encrypted and plaintext bodies with automatic detection:

**Envelope Structure**:

```rust
pub struct MessageEnvelope {
    /// Encryption indicator magic bytes (first 4 bytes of body)
    /// Value: "QRE1" (Queue Runtime Encrypted, version 1)
    /// Presence indicates encrypted message
    const ENCRYPTION_MARKER: [u8; 4] = *b"QRE1";
}
```

**Wire Format**:

- **Encrypted Message**: `["QRE1"][version][encrypted_message_bytes]`
- **Plaintext Message**: `[raw_payload_bytes]` (no marker)

**Detection Algorithm**:

```rust
fn is_encrypted(body: &[u8]) -> bool {
    body.len() >= 4 && &body[0..4] == b"QRE1"
}
```

### Secure Message Envelope


When encryption is enabled, messages are wrapped in encrypted envelope:

```rust
pub struct SecureMessage {
    /// Encryption marker ("QRE1")
    pub marker: [u8; 4],

    /// Original message metadata (session ID, correlation ID, properties)
    pub metadata: MessageMetadata,

    /// Encrypted message body
    pub encrypted_body: EncryptedMessage,
}

impl SecureMessage {
    /// Serialize to wire format
    pub fn to_bytes(&self) -> Vec<u8> {
        let mut bytes = Vec::new();
        bytes.extend_from_slice(&self.marker);  // "QRE1"
        bytes.push(1);  // Version
        bytes.extend_from_slice(&self.encrypted_body.to_bytes());
        bytes
    }

    /// Deserialize from wire format
    pub fn from_bytes(data: &[u8]) -> Result<Self, CryptoError> {
        if data.len() < 5 || &data[0..4] != b"QRE1" {
            return Err(CryptoError::InvalidEnvelope);
        }
        let version = data[4];
        if version != 1 {
            return Err(CryptoError::UnsupportedVersion { version });
        }
        let encrypted_body = EncryptedMessage::from_bytes(&data[5..])?;
        Ok(Self {
            marker: *b"QRE1",
            metadata: MessageMetadata::default(),
            encrypted_body,
        })
    }
}
```

**Processing Flow**:

1. **Sending with Encryption Enabled**:
   - Application creates `Message` with plaintext body
   - QueueClient checks if crypto enabled in config
   - If enabled: Encrypts body using `CryptoProvider`, prepends "QRE1" marker
   - If disabled: Sends plaintext body (no marker)
   - Logs encryption status (encrypted=true/false)
   - Emits metric: `queue_messages_sent{encrypted="true|false"}`

2. **Receiving with Encryption Detection**:
   - QueueClient receives message from queue
   - Checks first 4 bytes for "QRE1" marker
   - **If marker present (encrypted)**:
     - Validates message freshness (timestamp check)
     - Decrypts body using `CryptoProvider`
     - Logs: `message received (encrypted=true)`
     - Emits metric: `queue_messages_received{encrypted="true"}`
   - **If no marker (plaintext)**:
     - Logs WARNING: `message received without encryption (encrypted=false)`
     - Emits metric: `queue_messages_received{encrypted="false"}`
     - Returns plaintext body as-is (backward compatibility)
   - Returns `Message` with plaintext body to application

3. **Mixed Environment Support**:
   - Sender can disable encryption (debug mode)
   - Receiver auto-detects and handles both formats
   - Warnings logged when plaintext messages received
   - Metrics enable monitoring of encryption adoption

---

## Algorithm Specifications


### Default: AES-256-GCM


**Algorithm**: AES-256-GCM (Advanced Encryption Standard, 256-bit key, Galois/Counter Mode)

**Properties**:

- **Authenticated Encryption**: Provides both confidentiality and integrity
- **Nonce-Based**: Requires unique nonce per encryption
- **Associated Data**: Can authenticate metadata without encrypting it
- **Performance**: Hardware-accelerated on most modern CPUs

**Parameters**:

- Key size: 256 bits (32 bytes)
- Nonce size: 96 bits (12 bytes)
- Authentication tag: 128 bits (16 bytes)

**Associated Data**:

- Message ID (prevents ciphertext substitution)
- Session ID (binds encryption to session)
- Timestamp (prevents replay attacks)

**Implementation**:

```rust
use aes_gcm::{Aes256Gcm, Key, Nonce as AesNonce};
use aes_gcm::aead::{Aead, KeyInit};

pub struct AesGcmCryptoProvider {
    key_provider: Arc<dyn KeyProvider>,
}

impl AesGcmCryptoProvider {
    pub fn new(key_provider: Arc<dyn KeyProvider>) -> Self {
        Self { key_provider }
    }
}

#[async_trait]

impl CryptoProvider for AesGcmCryptoProvider {
    async fn encrypt(
        &self,
        key_id: &EncryptionKeyId,
        plaintext: &[u8],
        associated_data: &[u8],
    ) -> Result<EncryptedMessage, CryptoError> {
        // Get encryption key
        let key = self.key_provider.get_key(key_id).await?;

        // Generate random nonce
        let nonce = Nonce::random();

        // Create cipher
        let cipher_key = Key::<Aes256Gcm>::from_slice(key.as_bytes());
        let cipher = Aes256Gcm::new(cipher_key);

        // Encrypt with associated data
        let ciphertext = cipher
            .encrypt(AesNonce::from_slice(nonce.as_bytes()),
                     aes_gcm::aead::Payload {
                         msg: plaintext,
                         aad: associated_data,
                     })
            .map_err(|e| CryptoError::EncryptionFailed {
                reason: e.to_string()
            })?;

        // Extract authentication tag (last 16 bytes)
        let tag_start = ciphertext.len() - 16;
        let auth_tag = AuthenticationTag::from_bytes(&ciphertext[tag_start..])?;
        let ciphertext = ciphertext[..tag_start].to_vec();

        Ok(EncryptedMessage {
            key_id: key_id.clone(),
            ciphertext,
            nonce,
            auth_tag,
            encrypted_at: current_timestamp(),
            version: 1,
        })
    }

    async fn decrypt(
        &self,
        encrypted: &EncryptedMessage,
    ) -> Result<Vec<u8>, CryptoError> {
        // Validate version
        if encrypted.version != 1 {
            return Err(CryptoError::UnsupportedVersion {
                version: encrypted.version
            });
        }

        // Get decryption key
        let key = self.key_provider.get_key(&encrypted.key_id).await?;

        // Create cipher
        let cipher_key = Key::<Aes256Gcm>::from_slice(key.as_bytes());
        let cipher = Aes256Gcm::new(cipher_key);

        // Reconstruct ciphertext with auth tag
        let mut ciphertext_with_tag = encrypted.ciphertext.clone();
        ciphertext_with_tag.extend_from_slice(encrypted.auth_tag.as_bytes());

        // Decrypt and verify
        let plaintext = cipher
            .decrypt(
                AesNonce::from_slice(encrypted.nonce.as_bytes()),
                ciphertext_with_tag.as_slice()
            )
            .map_err(|_| CryptoError::AuthenticationFailed {
                reason: "Decryption failed - message may be tampered".to_string(),
            })?;

        Ok(plaintext)
    }
}
```

---

## Replay Protection


### Freshness Validation


**Problem**: Attacker replays old valid encrypted messages.

**Solution**: Timestamp-based freshness check with configurable window.

**Configuration**:

```rust
pub struct CryptoConfig {
    /// Maximum age for messages (default: 5 minutes)
    pub max_message_age: Duration,

    /// Enable freshness validation
    pub validate_freshness: bool,
}
```

**Implementation**:

```rust
impl EncryptedMessage {
    pub fn is_fresh(&self, max_age: Duration) -> bool {
        let now = current_timestamp();
        let age = now - self.encrypted_at;
        age >= 0 && age <= max_age.as_secs() as i64
    }
}

// In receive path
if config.validate_freshness && !encrypted_msg.is_fresh(config.max_message_age) {
    return Err(CryptoError::MessageExpired {
        encrypted_at: encrypted_msg.encrypted_at,
        max_age: config.max_message_age,
    });
}
```

### Nonce Tracking (Optional)


For extremely high-security scenarios, track used nonces to detect replays:

```rust
pub trait NonceStore: Send + Sync {
    /// Check if nonce has been used and mark as used
    async fn check_and_mark(&self, nonce: &Nonce, key_id: &EncryptionKeyId)
        -> Result<bool, CryptoError>;
}
```

**Trade-off**: Adds storage overhead but provides strongest replay protection.

---

## Key Rotation Strategy


### Multi-Key Support


**Scenario**: Rotate encryption keys without breaking existing messages.

**Strategy**:

1. Application adds new key with new key ID
2. New messages encrypted with new key
3. Old messages still decrypt with old key
4. After TTL expires, remove old key

**Implementation**:

```rust
pub struct MultiKeyProvider {
    keys: HashMap<EncryptionKeyId, EncryptionKey>,
    current: EncryptionKeyId,
}

#[async_trait]

impl KeyProvider for MultiKeyProvider {
    async fn get_key(&self, key_id: &EncryptionKeyId) -> Result<EncryptionKey, CryptoError> {
        self.keys.get(key_id)
            .cloned()
            .ok_or_else(|| CryptoError::KeyNotFound {
                key_id: key_id.clone()
            })
    }

    async fn current_key_id(&self) -> Result<EncryptionKeyId, CryptoError> {
        Ok(self.current.clone())
    }

    async fn valid_key_ids(&self) -> Result<Vec<EncryptionKeyId>, CryptoError> {
        Ok(self.keys.keys().cloned().collect())
    }
}
```

**Rotation Process**:

```rust
// 1. Add new key
key_provider.add_key(new_key);

// 2. Set as current
key_provider.set_current(new_key_id);

// 3. Wait for old messages to expire (queue TTL)
tokio::time::sleep(queue_ttl).await;

// 4. Remove old key
key_provider.remove_key(old_key_id);
```

---

## Observability and Monitoring


### Encryption Status Logging


**Send Path**:

```rust
// Log when sending encrypted message
tracing::info!(
    message_id = %msg.id(),
    session_id = ?msg.session_id(),
    encrypted = true,
    key_id = %key_id,
    "Message sent with encryption"
);

// Log WARNING when sending plaintext (crypto disabled)
tracing::warn!(
    message_id = %msg.id(),
    session_id = ?msg.session_id(),
    encrypted = false,
    "Message sent WITHOUT encryption - crypto disabled in config"
);
```

**Receive Path**:

```rust
// Log when receiving encrypted message
tracing::info!(
    message_id = %msg.id(),
    session_id = ?msg.session_id(),
    encrypted = true,
    key_id = %encrypted.key_id,
    "Message received with encryption"
);

// Log WARNING when receiving plaintext
tracing::warn!(
    message_id = %msg.id(),
    session_id = ?msg.session_id(),
    encrypted = false,
    "Message received WITHOUT encryption - sent by legacy/debug sender"
);
```

### Encryption Metrics


**Counter Metrics**:

```rust
// Messages sent (labeled by encryption status)
queue_messages_sent_total{queue="my-queue", encrypted="true"}
queue_messages_sent_total{queue="my-queue", encrypted="false"}

// Messages received (labeled by encryption status)
queue_messages_received_total{queue="my-queue", encrypted="true"}
queue_messages_received_total{queue="my-queue", encrypted="false"}

// Encryption failures
queue_crypto_errors_total{queue="my-queue", error_type="encryption_failed"}
queue_crypto_errors_total{queue="my-queue", error_type="authentication_failed"}
queue_crypto_errors_total{queue="my-queue", error_type="key_not_found"}
queue_crypto_errors_total{queue="my-queue", error_type="message_expired"}
```

**Histogram Metrics**:

```rust
// Encryption operation latency
queue_crypto_encrypt_duration_seconds{queue="my-queue"}

// Decryption operation latency
queue_crypto_decrypt_duration_seconds{queue="my-queue"}
```

**Gauge Metrics**:

```rust
// Current encryption configuration status
queue_crypto_enabled{queue="my-queue"} = 1.0  // Enabled
queue_crypto_enabled{queue="my-queue"} = 0.0  // Disabled
```

### Alerting Recommendations


**Production Alerts**:

1. **Unencrypted Messages in Production**:

   ```promql
   # Alert if >1% of messages are unencrypted
   rate(queue_messages_received_total{encrypted="false"}[5m])
   / rate(queue_messages_received_total[5m]) > 0.01
   ```

2. **Encryption Disabled**:

   ```promql
   # Alert if crypto disabled in production environment
   queue_crypto_enabled{environment="production"} == 0
   ```

3. **High Encryption Error Rate**:

   ```promql
   # Alert if >5% of operations fail
   rate(queue_crypto_errors_total[5m])
   / rate(queue_messages_sent_total[5m]) > 0.05
   ```

4. **Key Rotation Needed**:

   ```promql
   # Alert if same key used for >90 days
   time() - queue_crypto_key_created_timestamp > 7776000
   ```

### Debug Mode Configuration


**Temporary Encryption Disable for Debugging**:

```rust
// Development/debugging configuration
let config = CryptoConfig {
    enabled: false,  // Disable encryption temporarily
    ..Default::default();
};

// Logs WARNING on every send:
// "Message sent WITHOUT encryption - crypto disabled in config"

// Receiver still accepts both encrypted and plaintext messages
```

**Environment-Based Configuration**:

```rust
// Disable in dev, enable in prod
let crypto_enabled = std::env::var("ENVIRONMENT")
    .map(|e| e == "production" || e == "staging")
    .unwrap_or(false);

let config = CryptoConfig {
    enabled: crypto_enabled,
    ..Default::default()
};
```

---

## Error Types


```rust
#[derive(Debug, Error)]

pub enum CryptoError {
    #[error("Encryption failed: {reason}")]
    EncryptionFailed { reason: String },

    #[error("Authentication failed: {reason}")]
    AuthenticationFailed { reason: String },

    #[error("Key not found: {key_id:?}")]
    KeyNotFound { key_id: EncryptionKeyId },

    #[error("Message expired: encrypted at {encrypted_at}, max age {max_age:?}")]
    MessageExpired { encrypted_at: i64, max_age: Duration },

    #[error("Unsupported encryption version: {version}")]
    UnsupportedVersion { version: u8 },

    #[error("Invalid nonce size: expected {expected}, got {actual}")]
    InvalidNonceSize { expected: usize, actual: usize },

    #[error("Invalid message envelope: missing or corrupt encryption marker")]
    InvalidEnvelope,

    #[error("Key provider error: {source}")]
    KeyProviderError { source: Box<dyn std::error::Error + Send + Sync> },
}
```

---

## Configuration


### Crypto Configuration


```rust
pub struct CryptoConfig {
    /// Enable message encryption on send
    pub enabled: bool,

    /// Policy for receiving unencrypted messages
    pub plaintext_policy: PlaintextPolicy,

    /// Maximum message age (freshness validation)
    pub max_message_age: Duration,

    /// Validate message freshness
    pub validate_freshness: bool,

    /// Enable nonce tracking (replay detection)
    pub track_nonces: bool,

    /// Nonce cache TTL (if tracking enabled)
    pub nonce_cache_ttl: Duration,
}

/// Policy for handling plaintext (unencrypted) messages on receive
pub enum PlaintextPolicy {
    /// Accept plaintext messages (backward compatibility mode)
    /// Logs WARNING for each plaintext message
    Allow,

    /// Reject plaintext messages with error (strict security mode)
    /// Returns QueueError::UnencryptedMessage
    Reject,

    /// Accept but require operator acknowledgment
    /// Increments error metric, logs ERROR, but processes message
    AllowWithAlert,
}

impl Default for CryptoConfig {
    fn default() -> Self {
        Self {
            enabled: false, // Opt-in for backward compatibility
            plaintext_policy: PlaintextPolicy::Allow, // Accept plaintext by default
            max_message_age: Duration::from_secs(300), // 5 minutes
            validate_freshness: true,
            track_nonces: false, // Opt-in for high security
            nonce_cache_ttl: Duration::from_secs(600), // 10 minutes
        }
    }
}
```

### Queue Client Integration


```rust
pub struct QueueClientConfig {
    // ... existing fields ...

    /// Cryptography configuration
    pub crypto: CryptoConfig,

    /// Key provider for encryption/decryption
    pub key_provider: Option<Arc<dyn KeyProvider>>,
}

impl QueueClient {
    pub async fn send(&self, msg: Message) -> Result<MessageId, QueueError> {
        let msg = if self.config.crypto.enabled {
            // Encrypt message body
            self.encrypt_message(msg).await?
        } else {
            msg
        };

        self.provider.send(msg).await
    }

    pub async fn receive(&self) -> Result<ReceivedMessage, QueueError> {
        let msg = self.provider.receive().await?;

        if self.config.crypto.enabled {
            // Decrypt message body
            self.decrypt_message(msg).await
        } else {
            Ok(msg)
        }
    }
}
```

---

## Testing Strategy


### Unit Tests


```rust
#[cfg(test)]

mod tests {
    use super::*;

    #[tokio::test]
    async fn test_encrypt_decrypt_round_trip() {
        let key_provider = create_test_key_provider();
        let crypto = AesGcmCryptoProvider::new(key_provider);

        let plaintext = b"sensitive webhook payload";
        let associated_data = b"message-id-12345";

        let encrypted = crypto.encrypt(
            &EncryptionKeyId::new("test-key"),
            plaintext,
            associated_data,
        ).await.unwrap();

        let decrypted = crypto.decrypt(&encrypted).await.unwrap();

        assert_eq!(plaintext, decrypted.as_slice());
    }

    #[tokio::test]
    async fn test_tampering_detection() {
        let key_provider = create_test_key_provider();
        let crypto = AesGcmCryptoProvider::new(key_provider);

        let mut encrypted = create_test_encrypted_message();

        // Tamper with ciphertext
        encrypted.ciphertext[0] ^= 0xFF;

        let result = crypto.decrypt(&encrypted).await;

        assert!(matches!(result, Err(CryptoError::AuthenticationFailed { .. })));
    }

    #[tokio::test]
    async fn test_freshness_validation() {
        let mut encrypted = create_test_encrypted_message();

        // Set timestamp to 10 minutes ago
        encrypted.encrypted_at = current_timestamp() - 600;

        assert!(!encrypted.is_fresh(Duration::from_secs(300)));
    }

    #[tokio::test]
    async fn test_key_rotation() {
        let key_provider = MultiKeyProvider::new();

        // Add initial key
        key_provider.add_key(create_key("key-v1"));
        key_provider.set_current("key-v1");

        let crypto = AesGcmCryptoProvider::new(Arc::new(key_provider.clone()));

        // Encrypt with key v1
        let encrypted_v1 = crypto.encrypt(
            &key_provider.current_key_id().await.unwrap(),
            b"message 1",
            b"",
        ).await.unwrap();

        // Rotate to key v2
        key_provider.add_key(create_key("key-v2"));
        key_provider.set_current("key-v2");

        // Encrypt with key v2
        let encrypted_v2 = crypto.encrypt(
            &key_provider.current_key_id().await.unwrap(),
            b"message 2",
            b"",
        ).await.unwrap();

        // Both should decrypt successfully
        assert_eq!(crypto.decrypt(&encrypted_v1).await.unwrap(), b"message 1");
        assert_eq!(crypto.decrypt(&encrypted_v2).await.unwrap(), b"message 2");
    }

    #[tokio::test]
    async fn test_encryption_detection() {
        // Test encrypted message detection
        let encrypted_body = b"QRE1\x01encrypted_data_here";
        assert!(is_encrypted(encrypted_body));

        // Test plaintext message detection
        let plaintext_body = b"plain message data";
        assert!(!is_encrypted(plaintext_body));
    }

    #[tokio::test]
    async fn test_mixed_messages() {
        let client = create_test_client_with_crypto();

        // Send encrypted message
        let encrypted_msg = Message::new(b"encrypted payload".to_vec());
        client.send(encrypted_msg).await.unwrap();

        // Manually send plaintext (simulating old sender)
        let plaintext_msg = b"plaintext payload";
        send_raw_to_queue(plaintext_msg).await;

        // Receive encrypted - should auto-decrypt
        let msg1 = client.receive().await.unwrap();
        assert_eq!(msg1.body(), b"encrypted payload");

        // Receive plaintext - should handle gracefully
        let msg2 = client.receive().await.unwrap();
        assert_eq!(msg2.body(), b"plaintext payload");
    }
}
```

### Integration Tests


```rust
#[tokio::test]

async fn test_encrypted_message_through_queue() {
    let key_provider = create_test_key_provider();

    let client = QueueClientBuilder::new()
        .with_memory_provider()
        .with_crypto(CryptoConfig::default())
        .with_key_provider(key_provider)
        .build()
        .await
        .unwrap();

    // Send encrypted message
    let msg = Message::new(b"secret payload".to_vec());
    let msg_id = client.send(msg).await.unwrap();

    // Receive and auto-decrypt
    let received = client.receive().await.unwrap();

    assert_eq!(received.body(), b"secret payload");
}

#[tokio::test]

async fn test_multi_service_with_different_keys() {
    // Simulate sender with multiple clients
    let key_provider_a = create_key_provider("key-a");
    let key_provider_b = create_key_provider("key-b");

    let sender_client_a = QueueClientBuilder::new()
        .with_memory_provider()
        .with_crypto(CryptoConfig { enabled: true, .. })
        .with_key_provider(Arc::new(key_provider_a.clone()))
        .build().await.unwrap();

    let sender_client_b = QueueClientBuilder::new()
        .with_memory_provider()
        .with_crypto(CryptoConfig { enabled: true, .. })
        .with_key_provider(Arc::new(key_provider_b.clone()))
        .build().await.unwrap();

    // Send messages with different keys
    sender_client_a.send(Message::new(b"for service A".to_vec())).await.unwrap();
    sender_client_b.send(Message::new(b"for service B".to_vec())).await.unwrap();

    // Receiver A (with key-a)
    let receiver_a = QueueClientBuilder::new()
        .with_memory_provider()
        .with_key_provider(Arc::new(key_provider_a))
        .build().await.unwrap();

    let msg_a = receiver_a.receive().await.unwrap();
    assert_eq!(msg_a.body(), b"for service A");

    // Receiver B (with key-b)
    let receiver_b = QueueClientBuilder::new()
        .with_memory_provider()
        .with_key_provider(Arc::new(key_provider_b))
        .build().await.unwrap();

    let msg_b = receiver_b.receive().await.unwrap();
    assert_eq!(msg_b.body(), b"for service B");
}

#[tokio::test]

async fn test_wrong_key_fails_decryption() {
    let key_provider_a = create_key_provider("key-a");
    let key_provider_b = create_key_provider("key-b");

    // Send with key-a
    let sender = QueueClientBuilder::new()
        .with_memory_provider()
        .with_crypto(CryptoConfig { enabled: true, .. })
        .with_key_provider(Arc::new(key_provider_a))
        .build().await.unwrap();

    sender.send(Message::new(b"secret".to_vec())).await.unwrap();

    // Try to receive with key-b (wrong key)
    let receiver = QueueClientBuilder::new()
        .with_memory_provider()
        .with_key_provider(Arc::new(key_provider_b))
        .build().await.unwrap();

    let result = receiver.receive().await;

    // Should fail with authentication error
    assert!(matches!(result, Err(QueueError::CryptoError(
        CryptoError::AuthenticationFailed { .. }
    ))));
}
```

---

## Multi-Service Architecture Patterns


### Pattern 1: One Sender, Multiple Receivers with Different Keys


**Use Case**: Webhook router distributes events to different services, each with isolated encryption keys.

```rust
// Sender maintains multiple clients
struct WebhookRouter {
    service_a_client: QueueClient,  // Encrypts with key-a
    service_b_client: QueueClient,  // Encrypts with key-b
    service_c_client: QueueClient,  // Encrypts with key-c
}

impl WebhookRouter {
    async fn new() -> Result<Self> {
        Ok(Self {
            service_a_client: QueueClientBuilder::new()
                .with_azure_provider(config_a)
                .with_crypto(CryptoConfig { enabled: true, .. })
                .with_key_provider(Arc::new(create_key_provider("key-a")))
                .build().await?,

            service_b_client: QueueClientBuilder::new()
                .with_azure_provider(config_b)
                .with_crypto(CryptoConfig { enabled: true, .. })
                .with_key_provider(Arc::new(create_key_provider("key-b")))
                .build().await?,

            service_c_client: QueueClientBuilder::new()
                .with_azure_provider(config_c)
                .with_crypto(CryptoConfig { enabled: true, .. })
                .with_key_provider(Arc::new(create_key_provider("key-c")))
                .build().await?,
        })
    }

    async fn route_event(&self, event: WebhookEvent) -> Result<()> {
        match event.service {
            "A" => self.service_a_client.send(event.into()).await?,
            "B" => self.service_b_client.send(event.into()).await?,
            "C" => self.service_c_client.send(event.into()).await?,
            _ => return Err("Unknown service"),
        };
        Ok(())
    }
}

// Each receiver only has its own key
async fn service_a_receiver() -> QueueClient {
    QueueClientBuilder::new()
        .with_azure_provider(config)
        .with_key_provider(Arc::new(create_key_provider("key-a")))
        .build().await.unwrap()
}

async fn service_b_receiver() -> QueueClient {
    QueueClientBuilder::new()
        .with_azure_provider(config)
        .with_key_provider(Arc::new(create_key_provider("key-b")))
        .build().await.unwrap()
}
```

**Security**: Service A cannot decrypt Service B's messages (different keys).

### Pattern 2: Mixed Encryption - Some Queues Encrypted, Others Not


**Use Case**: Production queues encrypted, debug queues plaintext for troubleshooting.

```rust
struct MultiEnvironmentSender {
    prod_client: QueueClient,    // Encrypted
    debug_client: QueueClient,   // Plaintext
}

impl MultiEnvironmentSender {
    async fn new() -> Result<Self> {
        Ok(Self {
            prod_client: QueueClientBuilder::new()
                .with_azure_provider(prod_config)
                .with_crypto(CryptoConfig {
                    enabled: true,
                    plaintext_policy: PlaintextPolicy::Reject,
                    ..Default::default()
                })
                .with_key_provider(Arc::new(prod_key_provider))
                .build().await?,

            debug_client: QueueClientBuilder::new()
                .with_azure_provider(debug_config)
                .with_crypto(CryptoConfig {
                    enabled: false,  // Plaintext for debugging
                    ..Default::default()
                })
                .build().await?,
        })
    }

    async fn send(&self, env: Environment, msg: Message) -> Result<()> {
        match env {
            Environment::Production => {
                // Sends with "QRE1" marker (encrypted)
                self.prod_client.send(msg).await?;
            }
            Environment::Debug => {
                // Sends without marker (plaintext)
                // Logs WARNING: "Message sent WITHOUT encryption"
                self.debug_client.send(msg).await?;
            }
        }
        Ok(())
    }
}

// Receiver auto-detects both
async fn universal_receiver() -> QueueClient {
    QueueClientBuilder::new()
        .with_azure_provider(config)
        .with_key_provider(Arc::new(key_provider))
        .build().await.unwrap()
}

async fn process_messages(client: &QueueClient) {
    loop {
        let msg = client.receive().await.unwrap();
        // Auto-detects: encrypted (QRE1) or plaintext
        process(msg.body()).await;
        client.complete(msg.receipt()).await.unwrap();
    }
}
```

**Flexibility**: Can disable encryption for debugging without code changes on receiver.

### Pattern 3: Receiver Auto-Detection Only


**Use Case**: Receiver doesn't know sender configuration, handles both encrypted and plaintext.

```rust
// Receiver configured to accept both
async fn flexible_receiver() -> Result<QueueClient> {
    QueueClientBuilder::new()
        .with_azure_provider(config)
        .with_crypto(CryptoConfig {
            plaintext_policy: PlaintextPolicy::Allow,  // Accept both
            ..Default::default()
        })
        .with_key_provider(Arc::new(key_provider))
        .build().await
}

async fn process_all_messages(client: &QueueClient) {
    loop {
        let msg = client.receive().await.unwrap();

        // Library automatically:
        // - Checks for "QRE1" marker
        // - If present: decrypts with key_provider
        // - If absent: returns plaintext, logs WARNING

        let body = msg.body();  // Always plaintext here
        process_event(body).await;
        client.complete(msg.receipt()).await.unwrap();
    }
}
```

**No Coordination**: Receiver works with any sender configuration.

---

## Performance Considerations


### Encryption Overhead


**AES-256-GCM Performance** (hardware-accelerated):

- ~1-2 microseconds per message (typical webhook payload size)
- Minimal impact on throughput (<1% for most workloads)

**Optimization Strategies**:

1. **Batch encryption**: Encrypt multiple messages in parallel
2. **Hardware acceleration**: Use AES-NI CPU instructions (enabled by default in `aes-gcm` crate)
3. **Connection pooling**: Reuse crypto provider instances (they are thread-safe)

### Key Caching


Cache encryption keys in memory to avoid repeated secret store lookups:

```rust
pub struct CachedKeyProvider {
    inner: Arc<dyn KeyProvider>,
    cache: Arc<RwLock<HashMap<EncryptionKeyId, EncryptionKey>>>,
    cache_ttl: Duration,
}
```

**Trade-off**: Memory overhead vs. secret store latency (typically 10-50ms per lookup).

---

## Security Properties


### Guarantees


1. **Confidentiality**: Message content encrypted with AES-256 (industry standard)
2. **Integrity**: Authentication tag prevents undetected tampering
3. **Authenticity**: Only parties with correct key can create valid messages
4. **Freshness**: Timestamp validation prevents replay of old messages
5. **Key Rotation**: Supports seamless key updates without service interruption

### Limitations


1. **Metadata Visibility**: Message ID, session ID, correlation ID remain in cleartext (required for routing)
2. **Timing Attacks**: Decryption timing may reveal information about key validity
3. **Key Management**: Security depends on application's key storage (library cannot enforce)
4. **Replay Window**: Messages within freshness window can be replayed (use nonce tracking for mitigation)

### Compliance


- **FIPS 140-2**: AES-256-GCM is FIPS-approved cipher
- **PCI DSS**: Meets encryption requirements for cardholder data
- **GDPR**: Provides encryption for personal data in transit and at rest
- **HIPAA**: Satisfies encryption requirements for protected health information

---

## Migration Path


### Phase 1: Opt-In (Current)


- Crypto disabled by default
- Applications explicitly enable with configuration
- No impact on existing deployments

### Phase 2: Deprecation Warning (Future)


- Log warnings when crypto is disabled
- Update documentation recommending crypto for all deployments

### Phase 3: Default Enable (Future)


- Crypto enabled by default
- Applications must explicitly disable (not recommended)

### Phase 4: Mandatory (Future, Breaking Change)


- Remove ability to disable crypto
- All messages encrypted (major version bump)

---

## Example Usage


### Basic Setup


```rust
use queue_runtime::{QueueClient, CryptoConfig, MultiKeyProvider, EncryptionKey};

#[tokio::main]

async fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Create key provider
    let key_provider = MultiKeyProvider::new();
    key_provider.add_key(EncryptionKey::from_bytes(
        "my-key-2026",
        &load_key_from_secret_store()?,
    ));
    key_provider.set_current("my-key-2026");

    // Configure queue client with encryption
    let client = QueueClientBuilder::new()
        .with_azure_provider(config)
        .with_crypto(CryptoConfig {
            enabled: true,
            max_message_age: Duration::from_secs(300),
            validate_freshness: true,
            ..Default::default()
        })
        .with_key_provider(Arc::new(key_provider))
        .build()
        .await?;

    // Send encrypted message (transparent to application)
    let msg = Message::new(b"sensitive data".to_vec());
    client.send(msg).await?;

    // Receive and decrypt (transparent to application)
    let received = client.receive().await?;
    println!("Decrypted: {}", String::from_utf8_lossy(received.body()));

    Ok(())
}
```

### With Azure Key Vault


```rust
use azure_security_keyvault::KeyvaultClient;

pub struct AzureKeyVaultProvider {
    client: KeyvaultClient,
    vault_name: String,
}

#[async_trait]

impl KeyProvider for AzureKeyVaultProvider {
    async fn get_key(&self, key_id: &EncryptionKeyId) -> Result<EncryptionKey, CryptoError> {
        let secret = self.client
            .get_secret(key_id.as_str())
            .await
            .map_err(|e| CryptoError::KeyProviderError {
                source: Box::new(e)
            })?;

        let key_bytes = base64::decode(secret.value())?;
        Ok(EncryptionKey::from_bytes(key_id.as_str(), &key_bytes))
    }

    async fn current_key_id(&self) -> Result<EncryptionKeyId, CryptoError> {
        // Fetch "current-encryption-key" metadata from vault
        let current_id = self.client
            .get_secret_metadata("current-encryption-key")
            .await?;

        Ok(EncryptionKeyId::new(current_id))
    }
}
```

### With AWS Secrets Manager


```rust
use aws_sdk_secretsmanager::Client as SecretsManagerClient;

pub struct AwsSecretsManagerProvider {
    client: SecretsManagerClient,
    secret_prefix: String,
}

#[async_trait]

impl KeyProvider for AwsSecretsManagerProvider {
    async fn get_key(&self, key_id: &EncryptionKeyId) -> Result<EncryptionKey, CryptoError> {
        let secret_name = format!("{}/{}", self.secret_prefix, key_id.as_str());

        let response = self.client
            .get_secret_value()
            .secret_id(secret_name)
            .send()
            .await
            .map_err(|e| CryptoError::KeyProviderError {
                source: Box::new(e)
            })?;

        let key_bytes = response.secret_binary()
            .ok_or_else(|| CryptoError::KeyProviderError {
                source: "Secret is not binary".into()
            })?;

        Ok(EncryptionKey::from_bytes(key_id.as_str(), key_bytes.as_ref()))
    }
}
```