~ubuntu-branches/ubuntu/vivid/libapache2-mod-auth-openidc/vivid-proposed

« back to all changes in this revision

Viewing changes to src/jose/apr_jose.h

  • Committer: Package Import Robot
  • Author(s): Hans Zandbelt
  • Date: 2014-10-13 12:23:35 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20141013122335-31wgnq50ascmubib
Tags: 1.6.0-1
new upstream release; add libssl-dev dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
201
201
apr_byte_t apr_jwk_parse_json(apr_pool_t *pool, json_t *j_json,
202
202
                const char *s_json, apr_jwk_t **j_jwk);
203
203
/* convert the RSA public key in a PEM formatted file with an X.509 cert in to an RSA JWK */
204
 
apr_byte_t apr_jwk_x509_to_rsa_jwk(apr_pool_t *pool, const char *filename, char **jwk, char**kid);
 
204
apr_byte_t apr_jwk_pem_to_json(apr_pool_t *pool, const char *filename, char **jwk, char**kid);
205
205
/* convert the RSA private key in a PEM formatted file in to an RSA JWK */
206
206
apr_byte_t apr_jwk_private_key_to_rsa_jwk(apr_pool_t *pool, const char *filename, char **jwk, char**kid);
207
207