• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-1,8401,618

m4/H17-Apr-2014-8,6347,773

src/H03-May-2022-4,3612,565

tests/H17-Apr-2014-2,2431,595

AUTHORSH A D13-Sep-20101.4 KiB3725

COPYINGH A D20-May-2010112 32

COPYING.GPLH A D20-May-201017.6 KiB341281

COPYING.MITH A D17-Sep-20081.1 KiB2217

ChangeLogH A D17-Apr-20147 KiB249194

Doxyfile.inH A D01-Nov-201275.5 KiB1,8101,312

INSTALLH A D17-Apr-201415.4 KiB371288

LICENSE.OpenSSLH A D20-May-20106.8 KiB138130

Makefile.amH A D01-Nov-2012838 4032

Makefile.inH A D17-Apr-201429.2 KiB947852

NEWSH A D17-Sep-20080

READMEH A D22-May-20102.3 KiB6444

aclocal.m4H A D09-Mar-2013343.3 KiB9,7858,800

compileH A D17-Apr-20146.7 KiB311226

config.guessH A D17-Apr-201443.8 KiB1,5311,321

config.subH A D17-Apr-201434.6 KiB1,7741,631

configureH A D03-May-2022456.2 KiB15,90013,302

configure.acH A D01-Nov-20127.6 KiB257214

depcompH A D17-Apr-201419.9 KiB689448

install-shH A D17-Apr-201413.7 KiB528351

liboauth.lsm.inH A D20-May-2010548 2019

ltmain.shH A D17-Apr-2014277 KiB9,6627,310

missingH A D17-Apr-201410.1 KiB332243

oauth.pc.inH A D07-Sep-2010285 1311

README

1liboauth is a collection of c functions implementing the http://oauth.net API.
2
3liboauth provides functions to escape and encode stings according to
4OAuth specifications and offers high-level functionality built on top to sign
5requests or verify signatures using either NSS or OpenSSL for calculating
6the hash/signatures.
7
8The included documentation in the doc/ folder and example code from tests/
9can also be found online at http://liboauth.sourceforge.net/
10
11Send bug-reports, patches or suggestions to robin@gareus.org.
12or inquire information at http://groups.google.com/group/oauth/
13
14 == License and Notes ==
15
16The source-code of liboauth can be distributed under MIT License,
17or at your option: in terms of the the GNU General Public License.
18see COPYING.MIT or COPYING.GPL for details.
19
20Note: OpenSSL is not strictly compatible with the GPL license.
21An exemption (to the GPL) allowing to link and redistribute
22liboauth with the OpenSSL library is is included in the source files.
23for more information, see LICENSE.OpenSSL and
24http://lists.debian.org/debian-legal/2004/05/msg00595.html
25
26You can avoid this whole issue by using NSS instead of OpenSSL;
27configure with '--enable-nss'.
28
29The Debian packaging that comes with the source-code is licensed under
30the GNU General Public License.
31
32 == Test and Example Code ==
33
34After compilation `make check` can be used to perform a off-line self-test.
35
36There is also example code to perform and verify OAuth requests online,
37but they are not run automatically.
38
39
40 tests/oauthexample.c  - CONNECTS TO INTERNET
41     walk-though http://term.ie/oauth/example
42
43 tests/oauthtest.c     - CONNECTS TO INTERNET
44     gets a request-token from http://term.ie test-server
45
46 tests/oauthtest2.c    - CONNECTS TO INTERNET
47     gets a request-token from http://term.ie test-server
48     using OAuth HTTP Authorization header:
49     see http://oauth.net/core/1.0a/#auth_header
50     and http://oauth.net/core/1.0a/#consumer_req_param
51
52 tests/selftest_wiki.c
53 tests/selftest_eran.c
54     Test-Cases for parameter encoding, signatures, etc
55
56 tests/commontest.c
57     Common Test-Case functions exercising the low-level API used by self-tests.
58
59 tests/oauthdatapost.c - CONNECTS TO INTERNET
60     Experimental code to sign data uploads
61     Note: The example keys have since been deleted from the test-server.
62     Code remains for inspiration/example purposes.
63
64