diff options
author | Daniel Neus <[email protected]> | 2016-08-17 19:14:06 +0200 |
---|---|---|
committer | Daniel Neus <[email protected]> | 2016-08-17 19:14:06 +0200 |
commit | 5675750b04ffab7d17e5f41b9d169d59fb298adf (patch) | |
tree | 5945d48672694eac3e6835c02d5c0338f4246c32 /src/lib | |
parent | 8d7087066a5343a6f142643cf50d55a7681746a3 (diff) |
fix source file encoding ANSI -> UTF-8
should fix:
```
WARN: Invalid character encountered in file /home/travis/build/randombit/botan/src/tests/test_utils.cpp at line 381 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
WARN: Invalid character encountered in file /home/travis/build/randombit/botan/src/lib/pubkey/ecies/ecies.cpp at line 311 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
```
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/pubkey/ecies/ecies.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/pubkey/ecies/ecies.cpp b/src/lib/pubkey/ecies/ecies.cpp index 59f7c9eca..d44d14803 100644 --- a/src/lib/pubkey/ecies/ecies.cpp +++ b/src/lib/pubkey/ecies/ecies.cpp @@ -308,7 +308,7 @@ ECIES_Decryptor::ECIES_Decryptor(const PK_Key_Agreement_Key& key, const ECIES_Sy m_iv(), m_label() { - // ISO 18033: "If v > 1 and CheckMode = 0, then we must have gcd(�, v) = 1." (v = index, � = order) + // ISO 18033: "If v > 1 and CheckMode = 0, then we must have gcd(u, v) = 1." (v = index, u= order) if(!ecies_params.check_mode()) { Botan::BigInt cofactor = m_params.domain().get_cofactor(); |