Skip to content
Snippets Groups Projects
Select Git revision
  • 1fe332ad8b92c6dc3c68d82f8f79f132726d9091
  • master default protected
  • siv-mode
  • delete-des-compat
  • delete-rsa_blind
  • aes-struct-layout
  • master-updates
  • release-3.4-fixes
  • struct-layout
  • attribute-deprecated
  • rename-data-symbols
  • x86_64-sha_ni-sha256
  • ecc-params-tweak
  • delete-old-aes
  • cmac-support
  • x86_64-sha_ni-sha1
  • gcm-ctr-opt
  • ctr-opt
  • skein
  • api-opaque-fix
  • curve448
  • nettle_3.4.1_release_20181204
  • nettle_3.4.1rc1
  • nettle_3.4_release_20171119
  • nettle_3.4rc2
  • nettle_3.4rc1
  • nettle_3.3_release_20161001
  • nettle_3.2_release_20160128
  • 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
41 results

base64.h

Blame
  • Forked from Nettle / nettle
    Source project has a limited visibility.
    • Niels Möller's avatar
      1edcf521
      Fix remaining pointer-signedness warnings for base64. · 1edcf521
      Niels Möller authored
      * sexp-transport-format.c (base64_encode_in_place): New helper
      function.
      (sexp_transport_vformat): Use it.
      
      * testsuite/base64-test.c (test_fuzz_once): Update to use char
      type where appropriate.
      (test_main): Use helper functions base64_encode_in_place and
      base64_decode_in_place (copied to this file).
      
      * tools/pkcs1-conv.c (base64_decode_in_place): New helper
      function.
      (decode_base64): Use it.
      1edcf521
      History
      Fix remaining pointer-signedness warnings for base64.
      Niels Möller authored
      * sexp-transport-format.c (base64_encode_in_place): New helper
      function.
      (sexp_transport_vformat): Use it.
      
      * testsuite/base64-test.c (test_fuzz_once): Update to use char
      type where appropriate.
      (test_main): Use helper functions base64_encode_in_place and
      base64_decode_in_place (copied to this file).
      
      * tools/pkcs1-conv.c (base64_decode_in_place): New helper
      function.
      (decode_base64): Use it.
    peep.h 565 B
    /*
     * $Id: peep.h,v 1.4 1998/03/28 15:06:27 grubba Exp $
     */
    #ifndef PEEP_H
    #define PEEP_H
    
    #include "dynamic_buffer.h"
    extern dynamic_buffer instrbuf;
    
    /* Prototypes begin here */
    struct p_instr_s;
    void init_bytecode(void);
    void exit_bytecode(void);
    int insert_opcode(unsigned int f,
    		  INT32 b,
    		  INT32 current_line,
    		  struct pike_string *current_file);
    int insert_opcode2(int f,int current_line, struct pike_string *current_file);
    void update_arg(int instr,INT32 arg);
    void ins_f_byte(unsigned int b);
    void assemble(void);
    /* Prototypes end here */
    
    #endif