search for: md5key

Displaying 4 results from an estimated 4 matches for "md5key".

Did you mean: dokey
2012 Sep 04
2
[PATCH] Generalize HMAC implementation
...de.net> - * - * This software is released under the MIT license. - */ - -#include "lib.h" -#include "hmac-md5.h" -#include "safe-memset.h" - -void hmac_md5_init(struct hmac_md5_context *ctx, - const unsigned char *key, size_t key_len) -{ - int i; - unsigned char md5key[16]; - unsigned char k_ipad[64]; - unsigned char k_opad[64]; - - if (key_len > 64) { - md5_get_digest(key, key_len, md5key); - key = md5key; - key_len = 16; - } - - memcpy(k_ipad, key, key_len); - memset(k_ipad + key_len, 0, 64 - key_len); - memcpy(k_opad, k_ipad, 64); - - for (i = 0; i <...
2010 Sep 12
0
Question about programming libsmbclient.so
Hello, I'm writing a FUSE fs which cooperates with the automounter to offer the user easy and effective access to all kinds of resources, like USB and CDrom devices, and SMB shares. see: http://linux.bononline.nl/projects/mount.md5key.new/ Now I want to make my FUSE fs aware a share and server are still available. How can I do that? Where can I find documentation about the smbclient API? Stef Bon
2003 Jun 05
1
Updated Vorbis-RTP Internet Draft
...hich are required for codebook caching. If the following attributes are set they take precedent over values specified in the u attribute detailed above. The maximum size of the mandatory and optional SDP attributes MUST be less than 1K in size to conform to section 4.1 of [8]. a=md5key:<MD5 key of codebook> a=bitrate_min:<Bitrate Minimum> a=bitrate_norm:<Bitrate Normal> a=bitrate_max:<Bitrate Maximum> a=bsz0:<Block Size 0> a=bsz1:<Block Size 1> a=channels:<Num Audio Channels> a=meta_vendor:<Vendor Name> If t...
2010 Feb 05
1
Howto determine flags like readonly and readwrite.
...fuse-wokspace-union) which makes local (USB) and remote (FTP, SMB, and SSH and maybe IPX(netware)) resources available in a map in the homedirectory of the user. Look for more information my website: http://linux.bononline.nl/linux/create_workspace/index.php http://linux.bononline.nl/linux/mount.md5key/index.php http://linux.bononline.nl/linux/fuse-workspace/index.php The fusemodule creates a bridge between the actual mountpoints (which are managed by autofs, this does the actual mounting) and the special connectionsmap in the users homedirectory. I've also made an entry at KDE Brainstorm:...