Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: replace Ring with RustCrypto in spki.rs #62

Merged
merged 1 commit into from
Sep 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 100 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ ring = { version = "0.16.20", features = ["std"] }
zeroize = { version = "^1.5.2", features = ["alloc"] }
flagset = "0.4.3"
sgx = { version = "0.5.0" }
signature = "1.6"
rsa = {version = "0.7.0-rc.0", features = ["std"] }
p256 = { version = "0.11", features = ["ecdsa"] }
p384 = { version = "0.11", features = ["ecdsa"] }
rand = { version = "0.8", features = ["std"] }
Expand Down
52 changes: 36 additions & 16 deletions src/crypto/spki.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// SPDX-FileCopyrightText: 2022 Profian Inc. <opensource@profian.com>
// SPDX-License-Identifier: AGPL-3.0-only

use anyhow::{anyhow, Result};
use const_oid::ObjectIdentifier;
use der::{asn1::AnyRef, Sequence};
use ring::signature::VerificationAlgorithm as VerAlg;
use ring::signature::*;
use rsa::pkcs1::DecodeRsaPublicKey;
use spki::{AlgorithmIdentifier, SubjectPublicKeyInfo};

use const_oid::db::rfc5912::{
Expand All @@ -13,8 +13,6 @@ use const_oid::db::rfc5912::{
SECP_256_R_1 as P256, SECP_384_R_1 as P384,
};

use anyhow::{anyhow, Result};

const ES256: (ObjectIdentifier, Option<AnyRef<'static>>) = (ECDSA_WITH_SHA_256, None);
const ES384: (ObjectIdentifier, Option<AnyRef<'static>>) = (ECDSA_WITH_SHA_384, None);

Expand Down Expand Up @@ -46,10 +44,23 @@ pub trait SubjectPublicKeyInfoExt {

impl<'a> SubjectPublicKeyInfoExt for SubjectPublicKeyInfo<'a> {
fn verify(&self, body: &[u8], algo: AlgorithmIdentifier<'_>, sign: &[u8]) -> Result<()> {
let alg: &'static dyn VerAlg = match (self.algorithm.oids()?, (algo.oid, algo.parameters)) {
((ECPK, Some(P256)), ES256) => &ECDSA_P256_SHA256_ASN1,
((ECPK, Some(P384)), ES384) => &ECDSA_P384_SHA384_ASN1,
match (self.algorithm.oids()?, (algo.oid, algo.parameters)) {
((ECPK, Some(P256)), ES256) => {
use p256::ecdsa::signature::Verifier;
let vkey = p256::ecdsa::VerifyingKey::from_sec1_bytes(self.subject_public_key)?;
let sig = p256::ecdsa::Signature::from_der(sign)?;
Ok(vkey.verify(body, &sig)?)
}
npmccallum marked this conversation as resolved.
Show resolved Hide resolved

((ECPK, Some(P384)), ES384) => {
use p384::ecdsa::signature::Verifier;
let vkey = p384::ecdsa::VerifyingKey::from_sec1_bytes(self.subject_public_key)?;
let sig = p384::ecdsa::Signature::from_der(sign)?;
Ok(vkey.verify(body, &sig)?)
}
npmccallum marked this conversation as resolved.
Show resolved Hide resolved

((RSA, None), (ID_RSASSA_PSS, Some(p))) => {
use signature::{Signature, Verifier};
// Decompose the RSA PSS parameters.
let RsaSsaPssParams {
hash_algorithm: hash,
Expand All @@ -58,6 +69,9 @@ impl<'a> SubjectPublicKeyInfoExt for SubjectPublicKeyInfo<'a> {
trailer_field: tfld,
} = p.decode_into()?;

let pkey = rsa::RsaPublicKey::from_pkcs1_der(self.subject_public_key)?;
let s = rsa::pss::Signature::from_bytes(sign)?;

// Validate the sanity of the mask algorithm.
let algo = match (mask.oid, mask.parameters) {
(ID_MGF_1, Some(p)) => {
Expand All @@ -72,18 +86,24 @@ impl<'a> SubjectPublicKeyInfoExt for SubjectPublicKeyInfo<'a> {
_ => Err(anyhow!("unsupported")),
}?;
npmccallum marked this conversation as resolved.
Show resolved Hide resolved

// Prepare for validation.
match (hash.oids()?, algo) {
((SHA256, None), SHA256) => &RSA_PSS_2048_8192_SHA256,
((SHA384, None), SHA384) => &RSA_PSS_2048_8192_SHA384,
((SHA512, None), SHA512) => &RSA_PSS_2048_8192_SHA512,
_ => return Err(anyhow!("unsupported")),
((SHA256, None), SHA256) => {
let vkey = rsa::pss::VerifyingKey::<sha2::Sha256>::new(pkey);
Ok(vkey.verify(body, &s)?)
}
((SHA384, None), SHA384) => {
let vkey = rsa::pss::VerifyingKey::<sha2::Sha384>::new(pkey);
Ok(vkey.verify(body, &s)?)
}
((SHA512, None), SHA512) => {
let vkey = rsa::pss::VerifyingKey::<sha2::Sha512>::new(pkey);
Ok(vkey.verify(body, &s)?)
}
_ => Err(anyhow!("unsupported")),
}
}
_ => return Err(anyhow!("unsupported")),
};

let upk = UnparsedPublicKey::new(alg, self.subject_public_key);
Ok(upk.verify(body, sign)?)
_ => Err(anyhow!("unsupported")),
}
}
}