summaryrefslogtreecommitdiff
path: root/security/liboauth
AgeCommit message (Collapse)AuthorFilesLines
2017-01-01Revbump after boost updateadam2-4/+4
2016-10-07Revbump post boost updateadam2-4/+4
2016-03-05Bump PKGREVISION for security/openssl ABI bump.jperkin2-3/+4
2015-11-04Add SHA512 digests for distfiles for security categoryagc1-1/+2
Problems found locating distfiles: Package f-prot-antivirus6-fs-bin: missing distfile fp-NetBSD.x86.32-fs-6.2.3.tar.gz Package f-prot-antivirus6-ws-bin: missing distfile fp-NetBSD.x86.32-ws-6.2.3.tar.gz Package libidea: missing distfile libidea-0.8.2b.tar.gz Package openssh: missing distfile openssh-7.1p1-hpn-20150822.diff.bz2 Package uvscan: missing distfile vlp4510e.tar.Z Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-09-11Fix MASTER_SITES.wiz1-2/+2
2015-09-10Update liboauth to 1.0.3prlw13-16/+24
version 1.0.3 - clarify documentation of oauth_curl - fix possible memleak in oauth_curl (only relevant if an error occurs) - fix TOCTOU in oauth_curl_post_file: the file may change between stat() and fopen() version 1.0.2 - fix typos in documentation - add xfree, xstrdup patch from Kedar Sovani - prepare repository migration to github - built-in sha1 support big&little endian - (no changes to the actual library API or ABI) version 1.0.1 - do not url-escape RSA-key for signature version 1.0.0 - fix body-hash example code - mark all oauth_http functions as deprecated - freeze interface definitions for good - enter maintenance/bug-fix only cycle version 0.9.7 - fixed tiny memory leak when oauth_curl_get() fails - fixed double-encoding of plaintext signature version 0.9.6 - fixed typo, do not print a separator before first parameter when serializing url for auth-header. version 0.9.5 - added "built-in" hmac-sha1 hashing (no RSA). - added some CURL options available via enviroment variables - fixed issue with decoding already encoded characters in the base-URL (not parameters). reported by L. Alberto Gimenez
2014-02-12Recursive PKGREVISION bump for OpenSSL API version bump.tron2-4/+4
2013-02-06PKGREVISION bumps for the security/openssl 1.0.1d update.jperkin2-4/+4
2012-12-16recursive bump from cyrus-sasl libsasl2 shlib major bump.obache2-2/+4
2012-10-23Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-02-06fix typo, and propagate dependenciesdrochner1-2/+4
2011-05-03Update liboauth from 0.8.9 to 0.9.4.agc2-7/+6
Changes since previous version: version 0.9.4 - fixed possible memory corrution in oauth_curl_get thanks to Bruce Rosen for reporting this issue version 0.9.3 - yet more build-system fixes: - allow to override HASH_LIBS and CURL_LIBS using envoronment variables - include them in .pc and tests/Makefile.am version 0.9.2 - fixed typo in build-system (LDFLAGS, -Wl,--as-needed detection) version 0.9.1 - fixed typo in API: oauth_time_indepenent_equals[_n] is now deprecated in favor of oauth_time_independent_equals[_n] - added check for 'Wl,--as-needed' linker flag. version 0.9.0 - fixed typo in pkg-config file. With thanks to Brad Harder for the nudge.
2011-04-22recursive bump from gettext-lib shlib bump.obache1-1/+2
2010-09-03Import liboauth-0.8.9 into the Packages Collection.agc6-0/+96
This is an updated version of the liboauth package in pkgsrc-wip by Kamel Derouiche, modified by myself not to have nss, doxygen, perl and graphviz pre-requisites. OAuth (Open Authorization) is an open standard that allows users to share their private resources (e.g. photos, videos, contact lists) stored on one site with another site without having to hand out their username and password. OAuth allows users to hand out tokens instead of usernames and passwords to their data hosted by a given service provider. Each token grants access to a specific site (e.g. a video editing site) for specific resources (e.g. just videos from a specific album) and for a defined duration (e.g. the next 2 hours). Thus OAuth allows a user to grant a third party site access to their information stored with another service provider, without sharing their access permissions or the full extent of their data. OAuth is a service that is complementary to but distinct from OpenID. liboauth is a collection of C functions implementing the OAuth Core 1.0 standard API. liboauth provides basic functions to escape and encode parameters according to OAuth specs and offers high-level functions to sign requests or verify signatures. Necessary these days for twitter applications; useful for flickr and many others...