aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorgrascm <grascm@yandex-team.ru>2022-02-10 16:46:41 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:41 +0300
commita079c16e82e5b8f89b6a051027860a43461eac8e (patch)
tree0a70eecc23b5ca4847f65525a4d070718bb67ca3 /contrib
parentb5e813096385b2d9e16b572711fec5bf2eb5058d (diff)
downloadydb-a079c16e82e5b8f89b6a051027860a43461eac8e.tar.gz
Restoring authorship annotation for <grascm@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/libs/jwt-cpp/README.md158
-rw-r--r--contrib/libs/jwt-cpp/picojson.h10
-rw-r--r--contrib/libs/jwt-cpp/ya.make6
3 files changed, 87 insertions, 87 deletions
diff --git a/contrib/libs/jwt-cpp/README.md b/contrib/libs/jwt-cpp/README.md
index 5dcdd10c51..171661fb8b 100644
--- a/contrib/libs/jwt-cpp/README.md
+++ b/contrib/libs/jwt-cpp/README.md
@@ -1,79 +1,79 @@
-# jwt-cpp
-
-[![Codacy Badge](https://api.codacy.com/project/badge/Grade/5f7055e294744901991fd0a1620b231d)](https://app.codacy.com/app/Thalhammer/jwt-cpp?utm_source=github.com&utm_medium=referral&utm_content=Thalhammer/jwt-cpp&utm_campaign=Badge_Grade_Settings)
-
-A header only library for creating and validating json web tokens in c++.
-
-## Signature algorithms
-As of version 0.2.0 jwt-cpp supports all algorithms defined by the spec. The modular design of jwt-cpp allows one to add additional algorithms without any problems. If you need any feel free to open a pull request.
-For the sake of completeness, here is a list of all supported algorithms:
-* HS256
-* HS384
-* HS512
-* RS256
-* RS384
-* RS512
-* ES256
-* ES384
-* ES512
-* PS256
-* PS384
-* PS512
-
-## Examples
-Simple example of decoding a token and printing all claims:
-```c++
-#include <jwt-cpp/jwt.h>
-#include <iostream>
-
-int main(int argc, const char** argv) {
- std::string token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXUyJ9.eyJpc3MiOiJhdXRoMCJ9.AbIJTDMFc7yUa5MhvcP03nJPyCPzZtQcGEp-zWfOkEE";
- auto decoded = jwt::decode(token);
-
- for(auto& e : decoded.get_payload_claims())
- std::cout << e.first << " = " << e.second.to_json() << std::endl;
-}
-```
-
-In order to verify a token you first build a verifier and use it to verify a decoded token.
-```c++
-auto verifier = jwt::verify()
- .allow_algorithm(jwt::algorithm::hs256{ "secret" })
- .with_issuer("auth0");
-
-verifier.verify(decoded_token);
-```
-The created verifier is stateless so you can reuse it for different tokens.
-
-Creating a token (and signing) is equally easy.
-```c++
-auto token = jwt::create()
- .set_issuer("auth0")
- .set_type("JWS")
- .set_payload_claim("sample", std::string("test"))
- .sign(jwt::algorithm::hs256{"secret"});
-```
-
-## Contributing
-If you have an improvement or found a bug feel free to [open an issue](https://github.com/Thalhammer/jwt-cpp/issues/new) or add the change and create a pull request. If you file a bug please make sure to include as much information about your environment (compiler version, etc.) as possible to help reproduce the issue. If you add a new feature please make sure to also include test cases for it.
-
-## Dependencies
-In order to use jwt-cpp you need the following tools.
-* libcrypto (openssl or compatible)
-* a compiler supporting at least c++11
-* basic stl support
-
-In order to build the test cases you also need
-* gtest installed in linker path
-* pthread
-
-## Troubleshooting
-#### Missing _HMAC amd _EVP_sha256 symbols on Mac
-There seems to exists a problem with the included openssl library of MacOS. Make sure you link to one provided by brew.
-See [here](https://github.com/Thalhammer/jwt-cpp/issues/6) for more details.
-#### Building on windows fails with syntax errors
-The header "Windows.h", which is often included in windowsprojects, defines macros for MIN and MAX which screw up std::numeric_limits.
-See [here](https://github.com/Thalhammer/jwt-cpp/issues/5) for more details. To fix this do one of the following things:
-* define NOMINMAX, which suppresses this behaviour
-* include this library before you include windows.h
-* place ```#undef max``` and ```#undef min``` before you include this library
+# jwt-cpp
+
+[![Codacy Badge](https://api.codacy.com/project/badge/Grade/5f7055e294744901991fd0a1620b231d)](https://app.codacy.com/app/Thalhammer/jwt-cpp?utm_source=github.com&utm_medium=referral&utm_content=Thalhammer/jwt-cpp&utm_campaign=Badge_Grade_Settings)
+
+A header only library for creating and validating json web tokens in c++.
+
+## Signature algorithms
+As of version 0.2.0 jwt-cpp supports all algorithms defined by the spec. The modular design of jwt-cpp allows one to add additional algorithms without any problems. If you need any feel free to open a pull request.
+For the sake of completeness, here is a list of all supported algorithms:
+* HS256
+* HS384
+* HS512
+* RS256
+* RS384
+* RS512
+* ES256
+* ES384
+* ES512
+* PS256
+* PS384
+* PS512
+
+## Examples
+Simple example of decoding a token and printing all claims:
+```c++
+#include <jwt-cpp/jwt.h>
+#include <iostream>
+
+int main(int argc, const char** argv) {
+ std::string token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXUyJ9.eyJpc3MiOiJhdXRoMCJ9.AbIJTDMFc7yUa5MhvcP03nJPyCPzZtQcGEp-zWfOkEE";
+ auto decoded = jwt::decode(token);
+
+ for(auto& e : decoded.get_payload_claims())
+ std::cout << e.first << " = " << e.second.to_json() << std::endl;
+}
+```
+
+In order to verify a token you first build a verifier and use it to verify a decoded token.
+```c++
+auto verifier = jwt::verify()
+ .allow_algorithm(jwt::algorithm::hs256{ "secret" })
+ .with_issuer("auth0");
+
+verifier.verify(decoded_token);
+```
+The created verifier is stateless so you can reuse it for different tokens.
+
+Creating a token (and signing) is equally easy.
+```c++
+auto token = jwt::create()
+ .set_issuer("auth0")
+ .set_type("JWS")
+ .set_payload_claim("sample", std::string("test"))
+ .sign(jwt::algorithm::hs256{"secret"});
+```
+
+## Contributing
+If you have an improvement or found a bug feel free to [open an issue](https://github.com/Thalhammer/jwt-cpp/issues/new) or add the change and create a pull request. If you file a bug please make sure to include as much information about your environment (compiler version, etc.) as possible to help reproduce the issue. If you add a new feature please make sure to also include test cases for it.
+
+## Dependencies
+In order to use jwt-cpp you need the following tools.
+* libcrypto (openssl or compatible)
+* a compiler supporting at least c++11
+* basic stl support
+
+In order to build the test cases you also need
+* gtest installed in linker path
+* pthread
+
+## Troubleshooting
+#### Missing _HMAC amd _EVP_sha256 symbols on Mac
+There seems to exists a problem with the included openssl library of MacOS. Make sure you link to one provided by brew.
+See [here](https://github.com/Thalhammer/jwt-cpp/issues/6) for more details.
+#### Building on windows fails with syntax errors
+The header "Windows.h", which is often included in windowsprojects, defines macros for MIN and MAX which screw up std::numeric_limits.
+See [here](https://github.com/Thalhammer/jwt-cpp/issues/5) for more details. To fix this do one of the following things:
+* define NOMINMAX, which suppresses this behaviour
+* include this library before you include windows.h
+* place ```#undef max``` and ```#undef min``` before you include this library
diff --git a/contrib/libs/jwt-cpp/picojson.h b/contrib/libs/jwt-cpp/picojson.h
index c2321e9728..92a8041b5b 100644
--- a/contrib/libs/jwt-cpp/picojson.h
+++ b/contrib/libs/jwt-cpp/picojson.h
@@ -75,11 +75,11 @@ extern "C" {
// experimental support for int64_t (see README.mkdn for detail)
#ifdef PICOJSON_USE_INT64
-
-#ifndef __STDC_FORMAT_MACROS
+
+#ifndef __STDC_FORMAT_MACROS
#define __STDC_FORMAT_MACROS
-#endif
-
+#endif
+
#include <errno.h>
#include <inttypes.h>
#endif
@@ -1169,4 +1169,4 @@ inline std::ostream &operator<<(std::ostream &os, const picojson::value &x) {
#pragma warning(pop)
#endif
-#endif \ No newline at end of file
+#endif \ No newline at end of file
diff --git a/contrib/libs/jwt-cpp/ya.make b/contrib/libs/jwt-cpp/ya.make
index c7ddd33162..344d7f4caf 100644
--- a/contrib/libs/jwt-cpp/ya.make
+++ b/contrib/libs/jwt-cpp/ya.make
@@ -1,4 +1,4 @@
-# Generated by devtools/yamaker from nixpkgs 04d5f1e3a87d413181af5d6dd68568228addf1c3.
+# Generated by devtools/yamaker from nixpkgs 04d5f1e3a87d413181af5d6dd68568228addf1c3.
LIBRARY()
@@ -15,7 +15,7 @@ LICENSE(
BSD-2-Clause AND
MIT
)
-
+
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
PEERDIR(
@@ -24,6 +24,6 @@ PEERDIR(
NO_COMPILER_WARNINGS()
-NO_RUNTIME()
+NO_RUNTIME()
END()