Skip to content

Commit eb54d5d

Browse files
committed
Merge with upstream/main to synchronize histories
Signed-off-by: mematthias <107192630+mematthias@users.noreply.github.com>
2 parents caa3f4d + ef5aec2 commit eb54d5d

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,13 @@ jobs:
4141
- name: "Installs SoftHSM and execute tests"
4242
uses: ./.github/actions/ci_script
4343

44+
build-windows:
45+
name: Build on Windows
46+
runs-on: windows-latest
47+
steps:
48+
- uses: actions/checkout@v4
49+
- run: cargo check --all-features --workspace --all-targets
50+
4451
tests-kryoptic:
4552
name: Run tests against Kryoptic
4653
runs-on: ubuntu-latest

cryptoki/src/mechanism/eddsa.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ impl EddsaParams<'_> {
120120
///
121121
/// # Arguments
122122
///
123-
/// * `params` - The CK_EDDSA_PARAMS structure.
123+
/// * `scheme` - The EdDSA signature scheme.
124124
///
125125
/// # Returns
126126
///

cryptoki/src/session/message_decryption.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2025 Contributors to the Parsec project.
22
// SPDX-License-Identifier: Apache-2.0
3-
//! Encrypting data
3+
//! Decrypting messages
44
55
use crate::context::Function;
66
use crate::error::{Result, Rv};

cryptoki/src/session/message_encryption.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2025 Contributors to the Parsec project.
22
// SPDX-License-Identifier: Apache-2.0
3-
//! Encrypting data
3+
//! Encrypting messages
44
55
use crate::context::Function;
66
use crate::error::{Result, Rv};

0 commit comments

Comments
 (0)