| ... | ... | @@ -1840,7 +1840,7 @@ const CertificatePublicKey = struct { |
| 1840 | 1840 | const exponent = components.exponent; |
| 1841 | 1841 | const modulus = components.modulus; |
| 1842 | 1842 | switch (modulus.len) { |
| 1843 | | inline 128, 256, 512 => |modulus_len| { |
| 1843 | inline 128, 256, 384, 512 => |modulus_len| { |
| 1844 | 1844 | const key: PublicKey = try .fromBytes(exponent, modulus); |
| 1845 | 1845 | const sig = RsaSignature.fromBytes(modulus_len, encoded_sig); |
| 1846 | 1846 | try RsaSignature.concatVerify(modulus_len, sig, msg, key, Hash); |