summaryrefslogtreecommitdiffstats
path: root/crypto/asn1/x_pkey.c
AgeCommit message (Expand)Author
2020-11-26Update copyright yearMatt Caswell
2020-11-13Convert all {NAME}err() in crypto/ to their corresponding ERR_raise() callRichard Levitte
2018-12-06Following the license change, modify the boilerplates in crypto/asn1/Richard Levitte
2016-05-17Copyright consolidation 09/10Rich Salz
2016-03-22remove unused references fieldDr. Stephen Henson
2016-03-08Convert CRYPTO_LOCK_X509_* to new multi-threading APIAlessandro Ghedini
2016-02-11Move to REF_DEBUG, for consistency.Rich Salz
2016-01-26Remove /* foo.c */ commentsRich Salz
2015-11-09Continue standardising malloc style for libcryptoMatt Caswell
2015-09-17RT4047: Set reference count earlierFilipe DA SILVA
2015-09-03remove 0 assignments.Rich Salz
2015-09-02Add and use OPENSSL_zallocRich Salz
2015-05-14Identify and move common internal libcrypto header filesRichard Levitte
2015-05-04Use safer sizeof variant in mallocRich Salz
2015-05-01free null cleanup finaleRich Salz
2015-04-30free NULL cleanup 5aRich Salz
2015-03-30Rewrite X509_PKEY_new to avoid old ASN1. macros.Dr. Stephen Henson
2015-03-28Remove d2i_X509_PKEY and i2d_X509_PKEYDr. Stephen Henson
2015-03-28free NULL cleanupRich Salz
2015-03-24free NULL cleanupRich Salz
2015-03-23Remove old ASN.1 code.Dr. Stephen Henson
2015-01-22Run util/openssl-format-source -v -c .Matt Caswell
2008-11-12Revert the size_t modifications from HEAD that had led to moreGeoff Thorpe
2008-11-01More size_tification.Ben Laurie
2005-04-20Rename typed version of M_ASN1_get M_ASN1_get_x to avoid conflicts.Dr. Stephen Henson
2005-03-31Give everything prototypes (well, everything that's actually used).Ben Laurie
2004-03-15Constify d2i, s2i, c2i and r2i functions and other associatedRichard Levitte
2000-06-01There have been a number of complaints from a number of sources that namesRichard Levitte
2000-01-30Seek out and destroy another evil cast.Ulf Möller
2000-01-30Source code cleanups: Use void * rather than char * in lhash,Ulf Möller
1999-10-20Replace the macros in asn1.h with function equivalents. Also make UTF8StringsDr. Stephen Henson
1999-07-21Torture weak compilers less by not automatically including x509.h whereBodo Möller
1999-04-26Remove NOPROTO definitions and error code comments.Ulf Möller
1999-04-23Change #include filenames from <foo.h> to <openssl.h>.Bodo Möller
1999-04-19Change functions to ANSI C.Ulf Möller
1998-12-21Import of old SSLeay release: SSLeay 0.9.1b (unreleased)SSLeayRalf S. Engelschall
1998-12-21Import of old SSLeay release: SSLeay 0.9.0bRalf S. Engelschall
1998-12-21Import of old SSLeay release: SSLeay 0.8.1bRalf S. Engelschall
span class="k">silent! while 0 set nocompatible silent! endwhile " Allow backspacing over everything in insert mode. set backspace=indent,eol,start set history=200 " keep 200 lines of command line history set ruler " show the cursor position all the time set showcmd " display incomplete commands set wildmenu " display completion matches in a status line set ttimeout " time out for key codes set ttimeoutlen=100 " wait up to 100ms after Esc for special key " Show @@@ in the last line if it is truncated. set display=truncate " Show a few lines of context around the cursor. Note that this makes the " text scroll if you mouse-click near the start or end of the window. set scrolloff=5 " Do incremental searching when it's possible to timeout. if has('reltime') set incsearch endif " Do not recognize octal numbers for Ctrl-A and Ctrl-X, most users find it " confusing. set nrformats-=octal " For Win32 GUI: remove 't' flag from 'guioptions': no tearoff menu entries. if has('win32') set guioptions-=t endif " Don't use Q for Ex mode, use it for formatting. Except for Select mode. " Revert with ":unmap Q". map Q gq sunmap Q " CTRL-U in insert mode deletes a lot. Use CTRL-G u to first break undo, " so that you can undo CTRL-U after inserting a line break. " Revert with ":iunmap <C-U>". inoremap <C-U> <C-G>u<C-U> " In many terminal emulators the mouse works just fine. By enabling it you " can position the cursor, Visually select and scroll with the mouse. " Only xterm can grab the mouse events when using the shift key, for other " terminals use ":", select text and press Esc. if has('mouse') if &term =~ 'xterm' set mouse=a else set mouse=nvi endif endif " Only do this part when Vim was compiled with the +eval feature. if 1 " Enable file type detection. " Use the default filetype settings, so that mail gets 'tw' set to 72, " 'cindent' is on in C files, etc. " Also load indent files, to automatically do language-dependent indenting. " Revert with ":filetype off". filetype plugin indent on " Put these in an autocmd group, so that you can revert them with: " ":autocmd! vimStartup" augroup vimStartup autocmd! " When editing a file, always jump to the last known cursor position. " Don't do it when the position is invalid, when inside an event handler " (happens when dropping a file on gvim), for a commit or rebase message " (likely a different one than last time), and when using xxd(1) to filter " and edit binary files (it transforms input files back and forth, causing " them to have dual nature, so to speak) autocmd BufReadPost * \ let line = line("'\"") \ | if line >= 1 && line <= line("$") && &filetype !~# 'commit' \ && index(['xxd', 'gitrebase'], &filetype) == -1 \ | execute "normal! g`\"" \ | endif augroup END " Quite a few people accidentally type "q:" instead of ":q" and get confused " by the command line window. Give a hint about how to get out. " If you don't like this you can put this in your vimrc: " ":autocmd! vimHints" augroup vimHints au! autocmd CmdwinEnter * \ echohl Todo | \ echo gettext('You discovered the command-line window! You can close it with ":q".') | \ echohl None augroup END endif " Switch syntax highlighting on when the terminal has colors or when using the " GUI (which always has colors). if &t_Co > 2 || has("gui_running") " Revert with ":syntax off". syntax on " I like highlighting strings inside C comments. " Revert with ":unlet c_comment_strings". let c_comment_strings=1 endif " Convenient command to see the difference between the current buffer and the " file it was loaded from, thus the changes you made. " Only define it when not defined already. " Revert with: ":delcommand DiffOrig". if !exists(":DiffOrig") command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis \ | wincmd p | diffthis endif if has('langmap') && exists('+langremap') " Prevent that the langmap option applies to characters that result from a " mapping. If set (default), this may break plugins (but it's backward " compatible). set nolangremap endif