Skip to content

Commit

Permalink
Change XMSS License from (Apache 2.0 AND MIT) to `(Apache 2.0 OR MI…
Browse files Browse the repository at this point in the history
…T) AND CC0-1.0` (#1697)

* include CC0 and convert to Apache 2.0 OR MIT

* update license

* Add missing CC0-1.0
  • Loading branch information
ducnguyen-sb authored and SWilson4 committed May 14, 2024
1 parent 001e96a commit e1f02b2
Show file tree
Hide file tree
Showing 58 changed files with 82 additions and 70 deletions.
2 changes: 1 addition & 1 deletion docs/algorithms/sig_stfl/xmss.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- **Specification version**: None.
- **Primary Source**<a name="primary-source"></a>:
- **Source**: https://github.com/XMSS/xmss-reference
- **Implementation license (SPDX-Identifier)**: Apache-2.0 AND MIT
- **Implementation license (SPDX-Identifier)**: (Apache-2.0 OR MIT) AND CC0-1.0


## Parameter set summary
Expand Down
4 changes: 2 additions & 2 deletions docs/algorithms/sig_stfl/xmss.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ crypto-assumption: hash function second-preimage resistance
website: https://www.rfc-editor.org/info/rfc8391
nist-round:
spec-version:
spdx-license-identifier: Apache-2.0 AND MIT
spdx-license-identifier: (Apache-2.0 OR MIT) AND CC0-1.0
primary-upstream:
source: https://github.com/XMSS/xmss-reference
spdx-license-identifier: Apache-2.0 AND MIT
spdx-license-identifier: (Apache-2.0 OR MIT) AND CC0-1.0
upstream-ancestors:
parameter-sets:
- name: XMSS-SHA2_10_256
Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-License-Identifier: Apache-2.0 AND MIT
# SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

set(_XMSS_OBJS "")

Expand Down
14 changes: 12 additions & 2 deletions src/sig_stfl/xmss/LICENSE
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
## License

This XMSS reference implementation is Copyright (c) 2024 SandboxAQ and licensed under both the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) and [MIT License](LICENSE-MIT).
This XMSS reference implementation is Copyright (c) 2024 SandboxAQ and licensed under the CC0-1.0 AND ([Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) OR MIT License) at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
---------------------------------
The MIT License (MIT)

Copyright © 2024 SandboxAQ

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
---------------------------------

This XMSS reference implementation is based on the [XMSS reference implementation written by Andreas Hülsing and Joost Rijneveld](https://github.com/XMSS/xmss-reference#license) provided under the CC0 1.0 Universal Public Domain Dedication.

Expand Down
9 changes: 0 additions & 9 deletions src/sig_stfl/xmss/LICENSE-MIT

This file was deleted.

2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/core_hash.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#include <oqs/sha2.h>
#include <oqs/sha3.h>
#include "core_hash.h"
Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/core_hash.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#ifndef CORE_HASH
#define CORE_HASH

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/hash.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#include <stdint.h>
#include <string.h>

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/hash.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#ifndef XMSS_HASH_H
#define XMSS_HASH_H

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/hash_address.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#include <stdint.h>
#include "hash_address.h"

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/hash_address.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#ifndef XMSS_HASH_ADDRESS_H
#define XMSS_HASH_ADDRESS_H

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/namespace.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#ifndef XMSS_NAMESPACE_H
#define XMSS_NAMESPACE_H

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/params.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#include <stdint.h>
#include <string.h>

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/params.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#ifndef XMSS_PARAMS_H
#define XMSS_PARAMS_H

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/utils.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#include "utils.h"

/**
Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/utils.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#ifndef XMSS_UTILS_H
#define XMSS_UTILS_H

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/wots.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#include <stdint.h>
#include <string.h>

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/wots.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#ifndef XMSS_WOTS_H
#define XMSS_WOTS_H

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/xmss.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#include <stdint.h>

#include "params.h"
Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/xmss.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#ifndef XMSS_H
#define XMSS_H

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/xmss_commons.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/xmss_commons.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#ifndef XMSS_COMMONS_H
#define XMSS_COMMONS_H

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/xmss_core.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/xmss_core.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#ifndef XMSS_CORE_H
#define XMSS_CORE_H

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/external/xmss_core_fast.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#ifndef OQS_SIG_STFL_XMSS_H
#define OQS_SIG_STFL_XMSS_H
Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_functions.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0
#include <string.h>
#include <stdlib.h>

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_secret_key_functions.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include <oqs/oqs.h>
#include <string.h>
Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_sha256_h10.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_sha256_h16.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_sha256_h20.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

Expand Down
3 changes: 2 additions & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_sha512_h10.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

// ======================== XMSS-SHA2_10_512 ======================== //

XMSS_ALG(, _sha512_h10, _SHA512_H10)
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_sha512_h16.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_sha512_h20.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

Expand Down
3 changes: 2 additions & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_shake128_h10.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

// ======================== XMSS-SHAKE_10_256 ======================== //

XMSS_ALG(, _shake128_h10, _SHAKE128_H10)
3 changes: 2 additions & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_shake128_h16.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

// ======================== XMSS-SHAKE_10_256 ======================== //

XMSS_ALG(, _shake128_h16, _SHAKE128_H16)
3 changes: 2 additions & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_shake128_h20.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

// ======================== XMSS-SHAKE_10_256 ======================== //

XMSS_ALG(, _shake128_h20, _SHAKE128_H20)
3 changes: 2 additions & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_shake256_h10.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

// ======================== XMSS-SHAKE_10_512 ======================== //

XMSS_ALG(, _shake256_h10, _SHAKE256_H10)
3 changes: 2 additions & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_shake256_h16.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

// ======================== XMSS-SHAKE_16_512 ======================== //

XMSS_ALG(, _shake256_h16, _SHAKE256_H16)
3 changes: 2 additions & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_shake256_h20.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

// ======================== XMSS-SHAKE_20_512 ======================== //

XMSS_ALG(, _shake256_h20, _SHAKE256_H20)
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmss_xmssmt.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include <string.h>
#include <stdlib.h>
Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmssmt_functions.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include <string.h>
#include <stdlib.h>
Expand Down
3 changes: 2 additions & 1 deletion src/sig_stfl/xmss/sig_stfl_xmssmt_sha256_h20_2.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

// ======================== XMSSMT-SHA2_20/2_256 ======================== //

XMSS_ALG(mt, mt_sha256_h20_2, MT_SHA256_H20_2)
3 changes: 2 additions & 1 deletion src/sig_stfl/xmss/sig_stfl_xmssmt_sha256_h20_4.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

// ======================== XMSSMT-SHA2_20/4_256 ======================== //

XMSS_ALG(mt, mt_sha256_h20_4, MT_SHA256_H20_4)
3 changes: 2 additions & 1 deletion src/sig_stfl/xmss/sig_stfl_xmssmt_sha256_h40_2.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

// ======================== XMSSMT-SHA2_40/2_256 ======================== //

XMSS_ALG(mt, mt_sha256_h40_2, MT_SHA256_H40_2)
3 changes: 2 additions & 1 deletion src/sig_stfl/xmss/sig_stfl_xmssmt_sha256_h40_4.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

// ======================== XMSSMT-SHA2_40/4_256 ======================== //

XMSS_ALG(mt, mt_sha256_h40_4, MT_SHA256_H40_4)
4 changes: 2 additions & 2 deletions src/sig_stfl/xmss/sig_stfl_xmssmt_sha256_h40_8.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

// ======================== XMSSMT-SHA2_40/8_256 ======================== //
XMSS_ALG(mt, mt_sha256_h40_8, MT_SHA256_H40_8)

XMSS_ALG(mt, mt_sha256_h40_8, MT_SHA256_H40_8)
3 changes: 1 addition & 2 deletions src/sig_stfl/xmss/sig_stfl_xmssmt_sha256_h60_12.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"


// ======================== XMSSMT-SHA2_60/12_256 ======================== //

XMSS_ALG(mt, mt_sha256_h60_12, MT_SHA256_H60_12)
3 changes: 2 additions & 1 deletion src/sig_stfl/xmss/sig_stfl_xmssmt_sha256_h60_3.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

// ======================== XMSSMT-SHA2_60/3_256 ======================== //

XMSS_ALG(mt, mt_sha256_h60_3, MT_SHA256_H60_3)
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmssmt_sha256_h60_6.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmssmt_shake128_h20_2.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmssmt_shake128_h20_4.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmssmt_shake128_h40_2.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

Expand Down
2 changes: 1 addition & 1 deletion src/sig_stfl/xmss/sig_stfl_xmssmt_shake128_h40_4.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 AND MIT
// SPDX-License-Identifier: (Apache-2.0 OR MIT) AND CC0-1.0

#include "sig_stfl_xmss_xmssmt.c"

Expand Down
Loading

0 comments on commit e1f02b2

Please sign in to comment.