[MBEDTLS]

- We're a mostly-GPLv2 project, so use the GPLv2 version of the library.
CORE-12834

svn path=/trunk/; revision=73922
This commit is contained in:
Thomas Faber 2017-02-26 11:55:27 +00:00
parent 425f097968
commit 12a5c1fb9a
136 changed files with 1632 additions and 1360 deletions

View file

@ -2,19 +2,21 @@
* FIPS-197 compliant AES implementation * FIPS-197 compliant AES implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* AES-NI support functions * AES-NI support functions
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* An implementation of the ARCFOUR algorithm * An implementation of the ARCFOUR algorithm
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Generic ASN.1 parsing * Generic ASN.1 parsing
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* ASN.1 buffer writing functionality * ASN.1 buffer writing functionality
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* RFC 1521 base64 encoding/decoding * RFC 1521 base64 encoding/decoding
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Multi-precision integer library * Multi-precision integer library
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Blowfish implementation * Blowfish implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Camellia implementation * Camellia implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* NIST SP800-38C compliant CCM implementation * NIST SP800-38C compliant CCM implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* X.509 test certificates * X.509 test certificates
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -6,19 +6,21 @@
* \author Adriaan de Jong <dejong@fox-it.com> * \author Adriaan de Jong <dejong@fox-it.com>
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -6,19 +6,21 @@
* \author Adriaan de Jong <dejong@fox-it.com> * \author Adriaan de Jong <dejong@fox-it.com>
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* CTR_DRBG implementation based on AES-256 (NIST SP 800-90) * CTR_DRBG implementation based on AES-256 (NIST SP 800-90)
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Debugging routines * Debugging routines
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* FIPS-46-3 compliant Triple-DES implementation * FIPS-46-3 compliant Triple-DES implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Diffie-Hellman-Merkle key exchange * Diffie-Hellman-Merkle key exchange
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Elliptic curve Diffie-Hellman * Elliptic curve Diffie-Hellman
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Elliptic curve DSA * Elliptic curve DSA
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Elliptic curve J-PAKE * Elliptic curve J-PAKE
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Elliptic curves over GF(p): generic functions * Elliptic curves over GF(p): generic functions
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Elliptic curves over GF(p): curve-specific data and functions * Elliptic curves over GF(p): curve-specific data and functions
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Entropy accumulator implementation * Entropy accumulator implementation
* *
* Copyright (C) 2006-2016, ARM Limited, All Rights Reserved * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Platform-specific and custom entropy polling functions * Platform-specific and custom entropy polling functions
* *
* Copyright (C) 2006-2016, ARM Limited, All Rights Reserved * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Error message information * Error message information
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* NIST SP800-38D compliant GCM implementation * NIST SP800-38D compliant GCM implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* \brief HAVEGE: HArdware Volatile Entropy Gathering and Expansion * \brief HAVEGE: HArdware Volatile Entropy Gathering and Expansion
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* HMAC_DRBG implementation (NIST SP 800-90) * HMAC_DRBG implementation (NIST SP 800-90)
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -6,19 +6,21 @@
* \author Adriaan de Jong <dejong@fox-it.com> * \author Adriaan de Jong <dejong@fox-it.com>
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* RFC 1115/1319 compliant MD2 implementation * RFC 1115/1319 compliant MD2 implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* RFC 1186/1320 compliant MD4 implementation * RFC 1186/1320 compliant MD4 implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* RFC 1321 compliant MD5 implementation * RFC 1321 compliant MD5 implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -6,19 +6,21 @@
* \author Adriaan de Jong <dejong@fox-it.com> * \author Adriaan de Jong <dejong@fox-it.com>
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Buffer-based memory allocator * Buffer-based memory allocator
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* TCP/IP or UDP/IP networking functions * TCP/IP or UDP/IP networking functions
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Object Identifier (OID) database * \brief Object Identifier (OID) database
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* VIA PadLock support functions * VIA PadLock support functions
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Privacy Enhanced Mail (PEM) decoding * Privacy Enhanced Mail (PEM) decoding
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Public Key abstraction layer * Public Key abstraction layer
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Public Key abstraction layer: wrapper functions * Public Key abstraction layer: wrapper functions
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -6,19 +6,21 @@
* \author Adriaan de Jong <dejong@fox-it.com> * \author Adriaan de Jong <dejong@fox-it.com>
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* PKCS#12 Personal Information Exchange Syntax * PKCS#12 Personal Information Exchange Syntax
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -6,19 +6,21 @@
* \author Mathias Olsson <mathias@kompetensum.com> * \author Mathias Olsson <mathias@kompetensum.com>
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Public Key layer for parsing key files and structures * Public Key layer for parsing key files and structures
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Public Key layer for writing key files and structures * Public Key layer for writing key files and structures
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Platform abstraction layer * Platform abstraction layer
* *
* Copyright (C) 2006-2016, ARM Limited, All Rights Reserved * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* RIPE MD-160 implementation * RIPE MD-160 implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* The RSA public-key cryptosystem * The RSA public-key cryptosystem
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* FIPS-180-1 compliant SHA-1 implementation * FIPS-180-1 compliant SHA-1 implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* FIPS-180-2 compliant SHA-256 implementation * FIPS-180-2 compliant SHA-256 implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* FIPS-180-2 compliant SHA-384/512 implementation * FIPS-180-2 compliant SHA-384/512 implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* SSL session cache implementation * SSL session cache implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief SSL ciphersuites for mbed TLS * \brief SSL ciphersuites for mbed TLS
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* SSLv3/TLSv1 client-side functions * SSLv3/TLSv1 client-side functions
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* DTLS cookie callbacks implementation * DTLS cookie callbacks implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* SSLv3/TLSv1 server-side functions * SSLv3/TLSv1 server-side functions
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* TLS server tickets callbacks implementation * TLS server tickets callbacks implementation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* SSLv3/TLSv1 shared functions * SSLv3/TLSv1 shared functions
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Threading abstraction layer * Threading abstraction layer
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Portable interface to the CPU cycle counter * Portable interface to the CPU cycle counter
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Version information * Version information
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* Version feature information * Version feature information
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* X.509 common functions for parsing and verification * X.509 common functions for parsing and verification
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* X.509 base functions for creating certificates / CSRs * X.509 base functions for creating certificates / CSRs
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* X.509 Certidicate Revocation List (CRL) parsing * X.509 Certidicate Revocation List (CRL) parsing
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* X.509 certificate parsing and verification * X.509 certificate parsing and verification
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* X.509 Certificate Signing Request (CSR) parsing * X.509 Certificate Signing Request (CSR) parsing
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* X.509 certificate writing * X.509 certificate writing
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* X.509 Certificate Signing Request writing * X.509 Certificate Signing Request writing
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -2,19 +2,21 @@
* An 32-bit implementation of the XTEA algorithm * An 32-bit implementation of the XTEA algorithm
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief AES block cipher * \brief AES block cipher
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief AES-NI for hardware AES acceleration on some Intel processors * \brief AES-NI for hardware AES acceleration on some Intel processors
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief The ARCFOUR stream cipher * \brief The ARCFOUR stream cipher
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Generic ASN.1 parsing * \brief Generic ASN.1 parsing
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief ASN.1 buffer writing functionality * \brief ASN.1 buffer writing functionality
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief RFC 1521 base64 encoding/decoding * \brief RFC 1521 base64 encoding/decoding
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Multi-precision integer library * \brief Multi-precision integer library
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Blowfish block cipher * \brief Blowfish block cipher
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Multi-precision integer library * \brief Multi-precision integer library
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Camellia block cipher * \brief Camellia block cipher
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Counter with CBC-MAC (CCM) for 128-bit block ciphers * \brief Counter with CBC-MAC (CCM) for 128-bit block ciphers
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Sample certificates and DHM parameters for testing * \brief Sample certificates and DHM parameters for testing
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Consistency checks for configuration options * \brief Consistency checks for configuration options
* *
* Copyright (C) 2006-2016, ARM Limited, All Rights Reserved * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -6,19 +6,21 @@
* \author Adriaan de Jong <dejong@fox-it.com> * \author Adriaan de Jong <dejong@fox-it.com>
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -6,19 +6,21 @@
* \author Adriaan de Jong <dejong@fox-it.com> * \author Adriaan de Jong <dejong@fox-it.com>
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -7,19 +7,21 @@
* \deprecated Use the new names directly instead * \deprecated Use the new names directly instead
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -8,19 +8,21 @@
* memory footprint. * memory footprint.
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief CTR_DRBG based on AES-256 (NIST SP 800-90) * \brief CTR_DRBG based on AES-256 (NIST SP 800-90)
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Functions for controlling and providing debug output from the library. * \brief Functions for controlling and providing debug output from the library.
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief DES block cipher * \brief DES block cipher
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Diffie-Hellman-Merkle key exchange * \brief Diffie-Hellman-Merkle key exchange
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Elliptic curve Diffie-Hellman * \brief Elliptic curve Diffie-Hellman
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Elliptic curve DSA * \brief Elliptic curve DSA
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Elliptic curve J-PAKE * \brief Elliptic curve J-PAKE
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Elliptic curves over GF(p) * \brief Elliptic curves over GF(p)
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Entropy accumulator implementation * \brief Entropy accumulator implementation
* *
* Copyright (C) 2006-2016, ARM Limited, All Rights Reserved * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Platform-specific and custom entropy polling functions * \brief Platform-specific and custom entropy polling functions
* *
* Copyright (C) 2006-2016, ARM Limited, All Rights Reserved * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Error to string translation * \brief Error to string translation
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief Galois/Counter mode for 128-bit block ciphers * \brief Galois/Counter mode for 128-bit block ciphers
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

View file

@ -4,19 +4,21 @@
* \brief HAVEGE: HArdware Volatile Entropy Gathering and Expansion * \brief HAVEGE: HArdware Volatile Entropy Gathering and Expansion
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: GPL-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * This program is free software; you can redistribute it and/or modify
* not use this file except in compliance with the License. * it under the terms of the GNU General Public License as published by
* You may obtain a copy of the License at * the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* *
* http://www.apache.org/licenses/LICENSE-2.0 * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* *
* Unless required by applicable law or agreed to in writing, software * You should have received a copy of the GNU General Public License along
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * with this program; if not, write to the Free Software Foundation, Inc.,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* See the License for the specific language governing permissions and
* limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */

Some files were not shown because too many files have changed in this diff Show more