diff options
author | agc-sec <agc@google.com> | 2017-06-14 11:22:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-14 11:22:00 +0200 |
commit | cf77379751a58271b131a961c59f7e94b7dbd42a (patch) | |
tree | 3ea4e8f97da14d758c067be10881847b82db2724 /src/core | |
parent | 28903559996523ab30f0aaeddea794b9ea7219f4 (diff) |
Create jwt_verifier.c
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lib/security/credentials/jwt/jwt_verifier.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/security/credentials/jwt/jwt_verifier.c b/src/core/lib/security/credentials/jwt/jwt_verifier.c index 63b591e116..55b29d1777 100644 --- a/src/core/lib/security/credentials/jwt/jwt_verifier.c +++ b/src/core/lib/security/credentials/jwt/jwt_verifier.c @@ -465,7 +465,7 @@ static BIGNUM *bignum_from_base64(grpc_exec_ctx *exec_ctx, const char *b64) { #if OPENSSL_VERSION_NUMBER < 0x10100000L // Provide compatibility across OpenSSL 1.02 and 1.1. -int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d) +static int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d) { /* If the fields n and e in r are NULL, the corresponding input * parameters MUST be non-NULL for n and e. d may be |