Skip to content

Commit af71496

Browse files
ItalyPaleAleXavierGeerinckshubham1172
authored
Crypto: Encrypt and Decrypt (#491)
* Implement high-level crypto APIs: encrypt/decrypt Signed-off-by: ItalyPaleAle <[email protected]> * WIP Signed-off-by: ItalyPaleAle <[email protected]> * 💄 Signed-off-by: ItalyPaleAle <[email protected]> * Updated methods to allow both duplex streams and buffers Signed-off-by: ItalyPaleAle <[email protected]> * Various fixes Signed-off-by: ItalyPaleAle <[email protected]> * Fixes Signed-off-by: ItalyPaleAle <[email protected]> * Fixed typescript test Signed-off-by: ItalyPaleAle <[email protected]> * Added E2E tests Signed-off-by: ItalyPaleAle <[email protected]> * Update src/interfaces/Client/IClientCrypto.ts Co-authored-by: Shubham Sharma <[email protected]> Signed-off-by: Xavier Geerinck <[email protected]> * Updated per review feedback Signed-off-by: ItalyPaleAle <[email protected]> --------- Signed-off-by: ItalyPaleAle <[email protected]> Signed-off-by: Xavier Geerinck <[email protected]> Co-authored-by: Xavier Geerinck <[email protected]> Co-authored-by: Shubham Sharma <[email protected]>
1 parent 1114591 commit af71496

File tree

19 files changed

+5363
-56
lines changed

19 files changed

+5363
-56
lines changed

.github/workflows/test-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434
test-e2e:
3535
runs-on: ubuntu-latest
3636
env:
37-
GOVER: 1.19
37+
GOVER: 1.20
3838
DAPR_CLI_VER: 1.10.0
39-
DAPR_RUNTIME_VER: 1.11.0-rc.5
39+
DAPR_RUNTIME_VER: 1.11.0-rc.7
4040
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/master/install/install.sh
4141
DAPR_CLI_REF: ""
4242
DAPR_REF: ""

examples/grpc/crypto/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.out

examples/grpc/crypto/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Examples - Crypto
2+
3+
## Running
4+
5+
```bash
6+
# Install
7+
npm install
8+
9+
# Run the example
10+
npm run start:dapr
11+
```

0 commit comments

Comments
 (0)