Skip to content

Made more fields public + added get_canonicalized_header function to … #92

Made more fields public + added get_canonicalized_header function to …

Made more fields public + added get_canonicalized_header function to … #92

Triggered via push May 15, 2024 14:07
Status Failure
Total duration 43s
Artifacts

rust.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

3 errors and 2 warnings
no function or associated item named `from_pkcs8_der` found for struct `common::crypto::rust_crypto::Ed25519Key` in the current scope: src/dkim/generate.rs#L50
error[E0599]: no function or associated item named `from_pkcs8_der` found for struct `common::crypto::rust_crypto::Ed25519Key` in the current scope --> src/dkim/generate.rs:50:31 | 50 | let key = Ed25519Key::from_pkcs8_der(&pkcs8_der).unwrap(); | ^^^^^^^^^^^^^^ function or associated item not found in `Ed25519Key` | ::: src/common/crypto/rust_crypto.rs:82:1 | 82 | pub struct Ed25519Key { | --------------------- function or associated item `from_pkcs8_der` not found for this struct | note: if you're trying to build a new `common::crypto::rust_crypto::Ed25519Key`, consider using `common::crypto::rust_crypto::Ed25519Key::from_bytes` which returns `std::result::Result<common::crypto::rust_crypto::Ed25519Key, Error>` --> src/common/crypto/rust_crypto.rs:88:5 | 88 | pub fn from_bytes(private_key_bytes: &[u8]) -> crate::Result<Self> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ = help: items from traits can only be used if the trait is implemented and in scope = note: the following trait defines an item `from_pkcs8_der`, perhaps you need to implement it: candidate #1: `rsa::pkcs8::DecodePrivateKey`
no function or associated item named `generate_pkcs8` found for struct `common::crypto::rust_crypto::Ed25519Key` in the current scope: src/dkim/generate.rs#L49
error[E0599]: no function or associated item named `generate_pkcs8` found for struct `common::crypto::rust_crypto::Ed25519Key` in the current scope --> src/dkim/generate.rs:49:25 | 49 | Ed25519Key::generate_pkcs8().map_err(|err| Error::CryptoError(err.to_string()))?; | ^^^^^^^^^^^^^^ function or associated item not found in `Ed25519Key` | ::: src/common/crypto/rust_crypto.rs:82:1 | 82 | pub struct Ed25519Key { | --------------------- function or associated item `generate_pkcs8` not found for this struct | note: if you're trying to build a new `common::crypto::rust_crypto::Ed25519Key`, consider using `common::crypto::rust_crypto::Ed25519Key::from_bytes` which returns `std::result::Result<common::crypto::rust_crypto::Ed25519Key, Error>` --> src/common/crypto/rust_crypto.rs:88:5 | 88 | pub fn from_bytes(private_key_bytes: &[u8]) -> crate::Result<Self> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
build
Clippy had exited with the 101 exit code
build
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/cargo@v1, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
build
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/cargo@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/