Skip to content
Snippets Groups Projects
Select Git revision
  • ecc-support
  • master default
  • chacha-poly1305-test
  • rsa-crt-hardening
  • chacha96
  • fat-library
  • versioned-symbols
  • curve25519
  • dsa-reorg
  • aead-api
  • set_key-changes
  • poly1305
  • aes-reorg
  • nettle-2.7-fixes
  • size_t-changes
  • experimental-20050201
  • lsh-1.4.2
  • nettle_3.1.1_release_20150424
  • nettle_3.1_release_20150407
  • nettle_3.1rc3
  • nettle_3.1rc2
  • nettle_3.1rc1
  • nettle_3.0_release_20140607
  • nettle_2.7.1_release_20130528
  • nettle_2.7_release_20130424
  • nettle_2.6_release_20130116
  • nettle_2.5_release_20120707
  • converted-master-branch-to-git
  • nettle_2.4_release_20110903
  • nettle_2.3_release_20110902
  • nettle_2.2_release_20110711
  • nettle_2.1_release_20100725
  • camellia_32bit_20100720
  • nettle_2.0_release_20090608
  • nettle_1.15_release_20061128
  • after_experimental_merge_20060516
  • head_before_experimental_merge_20060516
37 results

blowfish.c

Blame
  • Forked from Nettle / nettle
    Source project has a limited visibility.
    oop-www.h 880 B
    /* oop-www.h, liboop, copyright 1999 Dan Egnor
    
       This is free software; you can redistribute it and/or modify it under the
       terms of the GNU Lesser General Public License, version 2.1 or later.
       See the file COPYING for details. */
    
    #ifndef OOP_WWW_H
    #define OOP_WWW_H
    
    #ifndef HTEVENT_H
    #error You must include "HTEvent.h" before "oop-www.h"!
    #endif
    
    #include "oop.h"
    
    /* Register an event manager with libwww to get events from a liboop source. 
       Because libwww's event loop is global, so is ours. */
    void oop_www_register(oop_source *);
    
    /* Release any resources associated with the event manager, and
       unregister it with libwww.  This will leave libwww with no event manager. */
    void oop_www_cancel(void);
    
    /* Use libwww's memory management for liboop.
       ** If you use this, you must do so before any other liboop function! ** */
    void oop_www_memory(void);
    
    #endif