We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 122852d commit cc9ac12Copy full SHA for cc9ac12
.github/workflows/ci.yml
@@ -12,6 +12,8 @@ jobs:
12
- uses: actions/checkout@v2
13
- name: Check spelling
14
uses: codespell-project/actions-codespell@v1
15
+ with:
16
+ exclude_file: tss-esapi/examples/symmetric_file_encrypt_decrypt_example.txt
17
18
formatting:
19
name: Check formatting
tss-esapi/examples/symmetric_file_encrypt_decrypt.rs
@@ -42,7 +42,7 @@ fn main() {
42
.expect("Failed to build object attributes");
43
44
let key_pub = PublicBuilder::new()
45
- // This key is a AES key
+ // This key is an AES key
46
.with_public_algorithm(PublicAlgorithm::SymCipher)
47
.with_name_hashing_algorithm(HashingAlgorithm::Sha256)
48
.with_symmetric_cipher_parameters(SymmetricCipherParameters::new(
0 commit comments