mirror of
https://github.com/OMGeeky/advisory-db.git
synced 2026-01-06 19:49:45 +01:00
The correct name for a Rust package is a "crate", so something with "crate" is less ambiguous than "package". However, "crate" itself is a Rust keyword. To avoid clashes in Rust code which uses this same attribute name, "crate_name" can be used instead unambigously.
17 lines
570 B
TOML
17 lines
570 B
TOML
[[advisory]]
|
|
id = "RUSTSEC-2017-0001"
|
|
crate_name = "sodiumoxide"
|
|
patched_versions = [">= 0.0.14"]
|
|
dwf = []
|
|
date = "2017-01-26"
|
|
url = "https://github.com/dnaq/sodiumoxide/issues/154"
|
|
title = "scalarmult() vulnerable to degenerate public keys"
|
|
description = """
|
|
The `scalarmult()` function included in previous versions of this crate
|
|
accepted all-zero public keys, for which the resulting Diffie-Hellman shared
|
|
secret will always be zero regardless of the private key used.
|
|
|
|
This issue was fixed by checking for this class of keys and rejecting them
|
|
if they are used.
|
|
"""
|