| commit | 169128d47a7d558477bcb4ffbc565450cd449914 | [log] [tgz] |
|---|---|---|
| author | Adam Langley <agl@chromium.org> | Sun Jan 07 17:47:37 2024 -0800 |
| committer | Adam Langley <agl@google.com> | Fri Jan 19 18:24:49 2024 +0000 |
| tree | edde3601051f01dc52c3ff74e3ca4c1eed79e957 | |
| parent | 929518a74286cd5957d30039b7cca96f49cc836b [diff] [blame] |
Reworking bssl_crypto: add ECDSA support Change-Id: Iec534e48806ebbe533ccec4b6461a2f243e23411 Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/65176 Reviewed-by: Bob Beck <bbe@google.com>
diff --git a/rust/bssl-crypto/src/lib.rs b/rust/bssl-crypto/src/lib.rs index 753cc79..4263be5 100644 --- a/rust/bssl-crypto/src/lib.rs +++ b/rust/bssl-crypto/src/lib.rs
@@ -54,6 +54,7 @@ pub mod ec; pub mod ecdh; +pub mod ecdsa; mod scoped;