Ver código fonte

Moved platform specific code to net.mbedtlscrypto

Brucey 2 anos atrás
pai
commit
a8b71a3756

+ 1 - 1
mbedtls.mod/common.bmx

@@ -1,5 +1,5 @@
 ' 
-' Copyright 2018-2022 Bruce A Henderson
+' Copyright 2018-2023 Bruce A Henderson
 ' 
 ' Licensed under the Apache License, Version 2.0 (the "License");
 ' you may not use this file except in compliance with the License.

+ 1 - 1
mbedtls.mod/glue.c

@@ -1,5 +1,5 @@
 /*
-  Copyright 2018-2022 Bruce A Henderson
+  Copyright 2018-2023 Bruce A Henderson
   
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.

+ 5 - 3
mbedtls.mod/mbedtls.bmx

@@ -1,5 +1,5 @@
 ' 
-' Copyright 2018-2022 Bruce A Henderson
+' Copyright 2018-2023 Bruce A Henderson
 ' 
 ' Licensed under the Apache License, Version 2.0 (the "License");
 ' you may not use this file except in compliance with the License.
@@ -20,10 +20,12 @@ bbdoc: mbed TLS SSL library.
 End Rem
 Module Net.mbedtls
 
-ModuleInfo "Version: 1.06"
+ModuleInfo "Version: 1.07"
 ModuleInfo "License: Apache 2.0"
-ModuleInfo "Copyright: Wrapper - 2018-2022 Bruce A Henderson"
+ModuleInfo "Copyright: Wrapper - 2018-2023 Bruce A Henderson"
 
+ModuleInfo "History: 1.07"
+ModuleInfo "History: Moved platform specific code to net.mbedtlscrypto"
 ModuleInfo "History: 1.06"
 ModuleInfo "History: Split crypto functions into net.mbedtlscrypto"
 ModuleInfo "History: 1.05"

+ 1 - 2
mbedtls.mod/source.bmx

@@ -1,5 +1,5 @@
 ' 
-' Copyright 2018-2022 Bruce A Henderson
+' Copyright 2018-2023 Bruce A Henderson
 ' 
 ' Licensed under the Apache License, Version 2.0 (the "License");
 ' you may not use this file except in compliance with the License.
@@ -37,7 +37,6 @@ Import "mbedtls/library/pk_wrap.c"
 Import "mbedtls/library/pkcs12.c"
 Import "mbedtls/library/pkparse.c"
 Import "mbedtls/library/pkwrite.c"
-Import "mbedtls/library/platform.c"
 Import "mbedtls/library/rsa.c"
 Import "mbedtls/library/rsa_alt_helpers.c"
 Import "mbedtls/library/ssl_ciphersuites.c"

+ 1 - 1
mbedtlscrypto.mod/common.bmx

@@ -1,5 +1,5 @@
 ' 
-' Copyright 2018-2022 Bruce A Henderson
+' Copyright 2018-2023 Bruce A Henderson
 ' 
 ' Licensed under the Apache License, Version 2.0 (the "License");
 ' you may not use this file except in compliance with the License.

+ 1 - 1
mbedtlscrypto.mod/mbedtlscrypto.bmx

@@ -1,5 +1,5 @@
 ' 
-' Copyright 2018-2022 Bruce A Henderson
+' Copyright 2018-2023 Bruce A Henderson
 ' 
 ' Licensed under the Apache License, Version 2.0 (the "License");
 ' you may not use this file except in compliance with the License.

+ 2 - 1
mbedtlscrypto.mod/source.bmx

@@ -1,5 +1,5 @@
 ' 
-' Copyright 2018-2022 Bruce A Henderson
+' Copyright 2018-2023 Bruce A Henderson
 ' 
 ' Licensed under the Apache License, Version 2.0 (the "License");
 ' you may not use this file except in compliance with the License.
@@ -37,6 +37,7 @@ Import "../mbedtls.mod/mbedtls/library/nist_kw.c"
 Import "../mbedtls.mod/mbedtls/library/oid.c"
 Import "../mbedtls.mod/mbedtls/library/padlock.c"
 Import "../mbedtls.mod/mbedtls/library/pkcs5.c"
+Import "../mbedtls.mod/mbedtls/library/platform.c"
 Import "../mbedtls.mod/mbedtls/library/platform_util.c"
 Import "../mbedtls.mod/mbedtls/library/poly1305.c"
 Import "../mbedtls.mod/mbedtls/library/ripemd160.c"