From c5f590d460f75e91d428ecd7758d1bb0910c0942 Mon Sep 17 00:00:00 2001 From: Lukas Pioch Date: Tue, 19 Sep 2017 10:34:08 +0200 Subject: Removed UTF-8 BOM (#4033) --- src/mbedTLS++/AesCfb128Decryptor.cpp | 2 +- src/mbedTLS++/AesCfb128Decryptor.h | 2 +- src/mbedTLS++/AesCfb128Encryptor.cpp | 2 +- src/mbedTLS++/AesCfb128Encryptor.h | 2 +- src/mbedTLS++/BlockingSslClientSocket.cpp | 2 +- src/mbedTLS++/BlockingSslClientSocket.h | 2 +- src/mbedTLS++/BufferedSslContext.cpp | 2 +- src/mbedTLS++/BufferedSslContext.h | 2 +- src/mbedTLS++/CallbackSslContext.cpp | 2 +- src/mbedTLS++/CallbackSslContext.h | 2 +- src/mbedTLS++/CryptoKey.cpp | 2 +- src/mbedTLS++/CryptoKey.h | 2 +- src/mbedTLS++/CtrDrbgContext.cpp | 2 +- src/mbedTLS++/CtrDrbgContext.h | 2 +- src/mbedTLS++/EntropyContext.cpp | 2 +- src/mbedTLS++/EntropyContext.h | 2 +- src/mbedTLS++/RsaPrivateKey.cpp | 2 +- src/mbedTLS++/RsaPrivateKey.h | 2 +- src/mbedTLS++/Sha1Checksum.cpp | 2 +- src/mbedTLS++/Sha1Checksum.h | 2 +- src/mbedTLS++/SslContext.cpp | 2 +- src/mbedTLS++/SslContext.h | 2 +- src/mbedTLS++/X509Cert.cpp | 2 +- src/mbedTLS++/X509Cert.h | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) (limited to 'src/mbedTLS++') diff --git a/src/mbedTLS++/AesCfb128Decryptor.cpp b/src/mbedTLS++/AesCfb128Decryptor.cpp index 78a7ab9c5..0a5896e52 100644 --- a/src/mbedTLS++/AesCfb128Decryptor.cpp +++ b/src/mbedTLS++/AesCfb128Decryptor.cpp @@ -1,4 +1,4 @@ - + // AesCfb128Decryptor.cpp // Implements the cAesCfb128Decryptor class decrypting data using AES CFB-128 diff --git a/src/mbedTLS++/AesCfb128Decryptor.h b/src/mbedTLS++/AesCfb128Decryptor.h index 54c5536ea..99d479381 100644 --- a/src/mbedTLS++/AesCfb128Decryptor.h +++ b/src/mbedTLS++/AesCfb128Decryptor.h @@ -1,4 +1,4 @@ - + // AesCfb128Decryptor.h // Declares the cAesCfb128Decryptor class decrypting data using AES CFB-128 diff --git a/src/mbedTLS++/AesCfb128Encryptor.cpp b/src/mbedTLS++/AesCfb128Encryptor.cpp index 11582fc19..a7b423a77 100644 --- a/src/mbedTLS++/AesCfb128Encryptor.cpp +++ b/src/mbedTLS++/AesCfb128Encryptor.cpp @@ -1,4 +1,4 @@ - + // AesCfb128Encryptor.cpp // Implements the cAesCfb128Encryptor class encrypting data using AES CFB-128 diff --git a/src/mbedTLS++/AesCfb128Encryptor.h b/src/mbedTLS++/AesCfb128Encryptor.h index 6bfa6b5c9..8048e2d61 100644 --- a/src/mbedTLS++/AesCfb128Encryptor.h +++ b/src/mbedTLS++/AesCfb128Encryptor.h @@ -1,4 +1,4 @@ - + // AesCfb128Encryptor.h // Declares the cAesCfb128Encryptor class encrypting data using AES CFB-128 diff --git a/src/mbedTLS++/BlockingSslClientSocket.cpp b/src/mbedTLS++/BlockingSslClientSocket.cpp index 6f765f607..9267975cb 100644 --- a/src/mbedTLS++/BlockingSslClientSocket.cpp +++ b/src/mbedTLS++/BlockingSslClientSocket.cpp @@ -1,4 +1,4 @@ - + // BlockingSslClientSocket.cpp // Implements the cBlockingSslClientSocket class representing a blocking TCP socket with client SSL encryption over it diff --git a/src/mbedTLS++/BlockingSslClientSocket.h b/src/mbedTLS++/BlockingSslClientSocket.h index 24ee32680..32c606535 100644 --- a/src/mbedTLS++/BlockingSslClientSocket.h +++ b/src/mbedTLS++/BlockingSslClientSocket.h @@ -1,4 +1,4 @@ - + // BlockingSslClientSocket.h // Declares the cBlockingSslClientSocket class representing a blocking TCP socket with client SSL encryption over it diff --git a/src/mbedTLS++/BufferedSslContext.cpp b/src/mbedTLS++/BufferedSslContext.cpp index 5cdf04323..88b66c592 100644 --- a/src/mbedTLS++/BufferedSslContext.cpp +++ b/src/mbedTLS++/BufferedSslContext.cpp @@ -1,4 +1,4 @@ - + // BufferedSslContext.cpp // Implements the cBufferedSslContext class representing a SSL context with the SSL peer data backed by a cByteBuffer diff --git a/src/mbedTLS++/BufferedSslContext.h b/src/mbedTLS++/BufferedSslContext.h index 9c9dd8f73..6facb5915 100644 --- a/src/mbedTLS++/BufferedSslContext.h +++ b/src/mbedTLS++/BufferedSslContext.h @@ -1,4 +1,4 @@ - + // BufferedSslContext.h // Declares the cBufferedSslContext class representing a SSL context with the SSL peer data backed by a cByteBuffer diff --git a/src/mbedTLS++/CallbackSslContext.cpp b/src/mbedTLS++/CallbackSslContext.cpp index 26bcec2ff..b3e08a2cd 100644 --- a/src/mbedTLS++/CallbackSslContext.cpp +++ b/src/mbedTLS++/CallbackSslContext.cpp @@ -1,4 +1,4 @@ - + // CallbackSslContext.cpp // Declares the cCallbackSslContext class representing a SSL context wrapper that uses callbacks to read and write SSL peer data diff --git a/src/mbedTLS++/CallbackSslContext.h b/src/mbedTLS++/CallbackSslContext.h index da1abb707..abf4eefd7 100644 --- a/src/mbedTLS++/CallbackSslContext.h +++ b/src/mbedTLS++/CallbackSslContext.h @@ -1,4 +1,4 @@ - + // CallbackSslContext.h // Declares the cCallbackSslContext class representing a SSL context wrapper that uses callbacks to read and write SSL peer data diff --git a/src/mbedTLS++/CryptoKey.cpp b/src/mbedTLS++/CryptoKey.cpp index 4ebb0f300..d9069e4e6 100644 --- a/src/mbedTLS++/CryptoKey.cpp +++ b/src/mbedTLS++/CryptoKey.cpp @@ -1,4 +1,4 @@ - + // CryptoKey.cpp // Implements the cCryptoKey class representing a RSA public key in mbedTLS diff --git a/src/mbedTLS++/CryptoKey.h b/src/mbedTLS++/CryptoKey.h index 1a74090ac..5615d57d0 100644 --- a/src/mbedTLS++/CryptoKey.h +++ b/src/mbedTLS++/CryptoKey.h @@ -1,4 +1,4 @@ - + // CryptoKey.h // Declares the cCryptoKey class representing a RSA public key in mbedTLS diff --git a/src/mbedTLS++/CtrDrbgContext.cpp b/src/mbedTLS++/CtrDrbgContext.cpp index bd4a55000..a2b9ee2dc 100644 --- a/src/mbedTLS++/CtrDrbgContext.cpp +++ b/src/mbedTLS++/CtrDrbgContext.cpp @@ -1,4 +1,4 @@ - + // CtrDrbgContext.cpp // Implements the cCtrDrbgContext class representing a wrapper over CTR-DRBG implementation in mbedTLS diff --git a/src/mbedTLS++/CtrDrbgContext.h b/src/mbedTLS++/CtrDrbgContext.h index 21d786c2e..fe67504a7 100644 --- a/src/mbedTLS++/CtrDrbgContext.h +++ b/src/mbedTLS++/CtrDrbgContext.h @@ -1,4 +1,4 @@ - + // CtrDrbgContext.h // Declares the cCtrDrbgContext class representing a wrapper over CTR-DRBG implementation in mbedTLS diff --git a/src/mbedTLS++/EntropyContext.cpp b/src/mbedTLS++/EntropyContext.cpp index aea056f4e..a5cdcb89e 100644 --- a/src/mbedTLS++/EntropyContext.cpp +++ b/src/mbedTLS++/EntropyContext.cpp @@ -1,4 +1,4 @@ - + // EntropyContext.cpp // Implements the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS diff --git a/src/mbedTLS++/EntropyContext.h b/src/mbedTLS++/EntropyContext.h index 37b6f120e..1c1695340 100644 --- a/src/mbedTLS++/EntropyContext.h +++ b/src/mbedTLS++/EntropyContext.h @@ -1,4 +1,4 @@ - + // EntropyContext.h // Declares the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS diff --git a/src/mbedTLS++/RsaPrivateKey.cpp b/src/mbedTLS++/RsaPrivateKey.cpp index 3dfb3bac3..94c7b38eb 100644 --- a/src/mbedTLS++/RsaPrivateKey.cpp +++ b/src/mbedTLS++/RsaPrivateKey.cpp @@ -1,4 +1,4 @@ - + // RsaPrivateKey.cpp #include "Globals.h" diff --git a/src/mbedTLS++/RsaPrivateKey.h b/src/mbedTLS++/RsaPrivateKey.h index 7be0152b7..63e648b60 100644 --- a/src/mbedTLS++/RsaPrivateKey.h +++ b/src/mbedTLS++/RsaPrivateKey.h @@ -1,4 +1,4 @@ - + // RsaPrivateKey.h // Declares the cRsaPrivateKey class representing a private key for RSA operations. diff --git a/src/mbedTLS++/Sha1Checksum.cpp b/src/mbedTLS++/Sha1Checksum.cpp index 9c82d92fe..9671b8d2b 100644 --- a/src/mbedTLS++/Sha1Checksum.cpp +++ b/src/mbedTLS++/Sha1Checksum.cpp @@ -1,4 +1,4 @@ - + // Sha1Checksum.cpp // Declares the cSha1Checksum class representing the SHA-1 checksum calculator diff --git a/src/mbedTLS++/Sha1Checksum.h b/src/mbedTLS++/Sha1Checksum.h index 43180e531..f85f5e8b5 100644 --- a/src/mbedTLS++/Sha1Checksum.h +++ b/src/mbedTLS++/Sha1Checksum.h @@ -1,4 +1,4 @@ - + // Sha1Checksum.h // Declares the cSha1Checksum class representing the SHA-1 checksum calculator diff --git a/src/mbedTLS++/SslContext.cpp b/src/mbedTLS++/SslContext.cpp index e86da3fd2..679362c7a 100644 --- a/src/mbedTLS++/SslContext.cpp +++ b/src/mbedTLS++/SslContext.cpp @@ -1,4 +1,4 @@ - + // SslContext.cpp // Implements the cSslContext class that holds everything a single SSL context needs to function diff --git a/src/mbedTLS++/SslContext.h b/src/mbedTLS++/SslContext.h index c51a9f149..d015b6587 100644 --- a/src/mbedTLS++/SslContext.h +++ b/src/mbedTLS++/SslContext.h @@ -1,4 +1,4 @@ - + // SslContext.h // Declares the cSslContext class that holds everything a single SSL context needs to function diff --git a/src/mbedTLS++/X509Cert.cpp b/src/mbedTLS++/X509Cert.cpp index 1e51dd2b7..4dd998f00 100644 --- a/src/mbedTLS++/X509Cert.cpp +++ b/src/mbedTLS++/X509Cert.cpp @@ -1,4 +1,4 @@ - + // X509Cert.cpp // Implements the cX509Cert class representing a wrapper over X509 certs in mbedTLS diff --git a/src/mbedTLS++/X509Cert.h b/src/mbedTLS++/X509Cert.h index 4234308ff..126b7387a 100644 --- a/src/mbedTLS++/X509Cert.h +++ b/src/mbedTLS++/X509Cert.h @@ -1,4 +1,4 @@ - + // X509Cert.h // Declares the cX509Cert class representing a wrapper over X509 certs in mbedTLS -- cgit v1.2.3