From 87c8fceb0e9d824cdc968b5efa97c8e33135cc05 Mon Sep 17 00:00:00 2001 From: Sean McGrail Date: Thu, 21 Dec 2023 23:00:58 +0000 Subject: [PATCH] RSA Module Tidying --- aws-lc-rs/src/rsa.rs | 2 +- aws-lc-rs/src/rsa/key.rs | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/aws-lc-rs/src/rsa.rs b/aws-lc-rs/src/rsa.rs index 0a073e0f28f..e836d8b5e88 100644 --- a/aws-lc-rs/src/rsa.rs +++ b/aws-lc-rs/src/rsa.rs @@ -3,7 +3,7 @@ // Modifications copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC -//! TODO: FIX ME +//! RSA Signature and Encryption Support. // *R* and *r* in Montgomery math refer to different things, so we always use // `R` to refer to *R* to avoid confusion, even when that's against the normal diff --git a/aws-lc-rs/src/rsa/key.rs b/aws-lc-rs/src/rsa/key.rs index 085b36592b7..6acfca5f1d9 100644 --- a/aws-lc-rs/src/rsa/key.rs +++ b/aws-lc-rs/src/rsa/key.rs @@ -1,4 +1,6 @@ -// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. +// Copyright 2015-2016 Brian Smith. +// SPDX-License-Identifier: ISC +// Modifications copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC use core::{