-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/cargo/sdk/range-set-0.0.11
- Loading branch information
Showing
46 changed files
with
2,887 additions
and
375 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Security | ||
|
||
This C2PA open-source library is maintained in partnership with Adobe. At this time, Adobe is taking point on accepting security reports through its HackerOne portal and public bug bounty program. | ||
|
||
## Reporting a vulnerability | ||
|
||
Please do not create a public GitHub issue for any suspected security vulnerabilities. Instead, please file an issue through [Adobe's HackerOne page](https://hackerone.com/adobe?type=team). If for some reason this is not possible, reach out to [email protected]. | ||
|
||
|
||
## Vulnerability SLAs | ||
|
||
Once we receive an actionable vulnerability (meaning there is an available patch, or a code fix is required), we will acknowledge the vulnerability within 24 hours. Our target SLAs for resolution are: | ||
|
||
1. 72 hours for vulnerabilities with a CVSS score of 9.0-10.0 | ||
2. 2 weeks for vulnerabilities with a CVSS score of 7.0-8.9 | ||
|
||
Any vulnerability with a score below 6.9 will be resolved when possible. | ||
|
||
|
||
## C2PA Vulnerabilities | ||
|
||
This library is not meant to address any potential vulnerabilities within the C2PA specification itself. It is only an implementation of the spec as written. Any suspected vulnerabilities within the spec can be reported [here](https://github.com/c2pa-org/specifications/issues). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "export_schema" | ||
version = "0.32.1" | ||
version = "0.32.7" | ||
authors = ["Dave Kozma <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
rust-version = "1.73.0" | ||
rust-version = "1.74.0" | ||
|
||
[dependencies] | ||
anyhow = "1.0.40" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
[package] | ||
name = "make_test_images" | ||
version = "0.32.1" | ||
version = "0.32.7" | ||
authors = ["Gavin Peacock <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
rust-version = "1.73.0" | ||
rust-version = "1.74.0" | ||
|
||
[dependencies] | ||
anyhow = "1.0.40" | ||
c2pa = { path = "../sdk", default-features = false, features = [ | ||
"openssl", | ||
"unstable_api", | ||
] } | ||
env_logger = "0.10" | ||
env_logger = "0.11" | ||
log = "0.4.8" | ||
image = { version = "0.24.7", default-features = false, features = [ | ||
image = { version = "0.25.1", default-features = false, features = [ | ||
"jpeg", | ||
"png", | ||
] } | ||
|
@@ -24,4 +24,3 @@ regex = "1.5.6" | |
serde = "1.0.197" | ||
serde_json = { version = "1.0.114", features = ["preserve_order"] } | ||
tempfile = "3.10.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "c2pa" | ||
version = "0.32.1" | ||
version = "0.32.7" | ||
description = "Rust SDK for C2PA (Coalition for Content Provenance and Authenticity) implementors" | ||
authors = [ | ||
"Maurice Fisher <[email protected]>", | ||
|
@@ -17,7 +17,7 @@ readme = "../README.md" | |
keywords = ["xmp", "metadata"] | ||
categories = ["api-bindings"] | ||
edition = "2021" | ||
rust-version = "1.73.0" | ||
rust-version = "1.74.0" | ||
exclude = ["tests/fixtures"] | ||
|
||
[package.metadata.docs.rs] | ||
|
@@ -59,13 +59,12 @@ name = "v2api" | |
required-features = ["unstable_api"] | ||
|
||
|
||
|
||
[lib] | ||
crate-type = ["lib"] | ||
|
||
[dependencies] | ||
asn1-rs = "0.5.2" | ||
async-generic = "0.1.2" | ||
async-generic = "1.1" | ||
async-trait = { version = "0.1.77" } | ||
atree = "0.5.2" | ||
base64 = "0.21.2" | ||
|
@@ -120,10 +119,10 @@ serde_with = "3.4.0" | |
serde-transcode = "1.1.1" | ||
sha2 = "0.10.2" | ||
tempfile = "3.10.1" | ||
thiserror = "1.0.40" | ||
thiserror = "1.0.61" | ||
treeline = "0.1.0" | ||
url = "2.2.2" | ||
uuid = { version = "1.3.1", features = ["serde", "v4", "wasm-bindgen"] } | ||
url = "2.2.2, <2.5.1" # Can't use 2.5.1 or newer until new license is reviewed. | ||
uuid = { version = "1.7.0", features = ["serde", "v4", "js"] } | ||
x509-parser = "0.15.1" | ||
x509-certificate = "0.19.0" | ||
zip = { version = "0.6.6", default-features = false } | ||
|
@@ -161,7 +160,11 @@ web-sys = { version = "0.3.58", features = [ | |
[dev-dependencies] | ||
anyhow = "1.0.40" | ||
mockall = "0.11.2" | ||
c2pa = { path = ".", features = ["unstable_api"] } # allow integration tests to use the new API | ||
c2pa = { path = ".", features = [ | ||
"unstable_api", | ||
] } # allow integration tests to use the new API | ||
jumbf = "0.4.0" | ||
|
||
|
||
[target.'cfg(target_arch = "wasm32")'.dev-dependencies] | ||
wasm-bindgen-test = "0.3.31" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.