Addition of copyright statements to tinycrypt files
Each of the tinycrypt files have had some very minor changes, so need a copyright statement.
This commit is contained in:
parent
4f58d696e2
commit
92c3d1f4f4
6 changed files with 30 additions and 12 deletions
|
@ -1,10 +1,13 @@
|
||||||
/* ecc.h - TinyCrypt interface to common ECC functions */
|
/* ecc.h - TinyCrypt interface to common ECC functions */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2019, Arm Limited (or its affiliates), All Rights Reserved.
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
/* Copyright (c) 2014, Kenneth MacKay
|
/* Copyright (c) 2014, Kenneth MacKay
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions are met:
|
* modification, are permitted provided that the following conditions are met:
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
/* ecc_dh.h - TinyCrypt interface to EC-DH implementation */
|
/* ecc_dh.h - TinyCrypt interface to EC-DH implementation */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2019, Arm Limited (or its affiliates), All Rights Reserved.
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2014, Kenneth MacKay
|
* Copyright (c) 2014, Kenneth MacKay
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions are met:
|
* modification, are permitted provided that the following conditions are met:
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
/* ecc_dh.h - TinyCrypt interface to EC-DSA implementation */
|
/* ecc_dh.h - TinyCrypt interface to EC-DSA implementation */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2019, Arm Limited (or its affiliates), All Rights Reserved.
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2014, Kenneth MacKay
|
* Copyright (c) 2014, Kenneth MacKay
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions are met:
|
* modification, are permitted provided that the following conditions are met:
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
/* ecc.c - TinyCrypt implementation of common ECC functions */
|
/* ecc.c - TinyCrypt implementation of common ECC functions */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2019, Arm Limited (or its affiliates), All Rights Reserved.
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2014, Kenneth MacKay
|
* Copyright (c) 2014, Kenneth MacKay
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions are met:
|
* modification, are permitted provided that the following conditions are met:
|
||||||
* * Redistributions of source code must retain the above copyright notice,
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
/* ec_dh.c - TinyCrypt implementation of EC-DH */
|
/* ec_dh.c - TinyCrypt implementation of EC-DH */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2019, Arm Limited (or its affiliates), All Rights Reserved.
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2014, Kenneth MacKay
|
* Copyright (c) 2014, Kenneth MacKay
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions are met:
|
* modification, are permitted provided that the following conditions are met:
|
||||||
* * Redistributions of source code must retain the above copyright notice,
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
/* ec_dsa.c - TinyCrypt implementation of EC-DSA */
|
/* ec_dsa.c - TinyCrypt implementation of EC-DSA */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2019, Arm Limited (or its affiliates), All Rights Reserved.
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
/* Copyright (c) 2014, Kenneth MacKay
|
/* Copyright (c) 2014, Kenneth MacKay
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions are met:
|
* modification, are permitted provided that the following conditions are met:
|
||||||
* * Redistributions of source code must retain the above copyright notice,
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue