KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
wsse-js
★ 21
Open GitHub ↗
WSSE for JavaScript
Download README (.md)
Explore Similar Repositories
Wordpress-Plugin--Media-Upload-Skeleton
:
A bare bones skeleton of a media upload plugin, creates the tab in the Media Upload window and allows the insertion of shortcode
sentimental
:
A simple sentiment analyzer, based on clojure-opennlp
db-vk
:
DeaDBeeF vkontakte plugin
ogg.js
:
ogg vorbis decoder in JavaScript
fs
:
The fs flow record generator / network simulator.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
wsse-js
?
Download (.md)
wsse.js - Generate WSSE authentication header in JavaScript (C) 2005 Victor R. Ruiz <rvr*linotipo.es> - http://rvr.typepad.com/ Parts: * SHA-1 library (C) 2000-2002 Paul Johnston - BSD license * ISO 8601 function (C) 2000 JF Walker All Rights * Base64 function (C) aardwulf systems - Creative Commons The current default authentication method in TypePad and Movable Type's Atom implementation is WSSE. WSSE is a header containing a token based on username, password and date and looks like: X-WSSE: UsernameToken Username="name", PasswordDigest="digest", Created="timestamp", Nonce="nonce" I have implented a library in JavaScript to generate this header, quite useful for XmlHttpRequest and GM\_XmlHttpRequest functions. An example of use: '''javascript <html> <head> <script language="JavaScript1.2" src="wsse.js"> </head> <body> <script language="JavaScript1.2"> var w = wsseHeader(Username, Password); alert('X-WSSE: ' + w); </script> </body> ''' This library uses code from Paul Johnston, JF Walker and aardwulf systems.