4362 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 145 / 219
Newer►
  • thumbnail
    key exchange - why do we need Diffie Hellman? - Cryptography Stack Exchange

    Des réponses à une question que je me posais :

    I assume you're talking about SSL/TLS or a similar protocol. In these protocols there are two reasons to use Diffie-Hellman:

    Your certificate only supports signing
    Either it is an RSA certificate restricted to signing, or it uses an algorithm that doesn't support encryption, such as DSA or ECDSA.
    Forward security - What happens if the server's private key gets leaked somehow?
    If you simply encrypted the session key to the server's public key, all past communication with that server can be decrypted. Which is very bad.
    If an ephemeral Diffie-Hellman key-exchange was used, a private key leak won't compromize past communications, since the keys used for the key exchange are long gone, and the leaked long term key was only used for authentication and not for confidentiality.
    You don't know the public key of the other side
    There are situations where you don't know the other side's public key, but you have a different way to authenticate them. In that case you can use anonymous Diffie-Hellman together with that other way. For example TLS supports authentication based on a symmetric shared secret in a way that's secure against MitM.

    Some other protocols such as CurveCP use EC Diffie-Hellman for both authentication and key-exchange. In this case they profit from the performance advantage elliptic curves have over RSA.

    June 7, 2013 at 11:01:24 PM GMT+2 - permalink - archive.org - http://crypto.stackexchange.com/questions/3163/why-do-we-need-diffie-hellman
    ipsec
  • thumbnail
    Internet Key Exchange - Wikipedia, the free encyclopedia
    June 7, 2013 at 10:57:40 PM GMT+2 - permalink - archive.org - http://en.wikipedia.org/wiki/Internet_Key_Exchange
    ipsec
  • Voix passive
    June 7, 2013 at 11:45:31 AM GMT+2 - permalink - archive.org - http://www.francaisfacile.com/exercices/exercice-francais-2/exercice-francais-9841.php
    français francais french fr grammaire
  • Soirée OtsHamona - Extrait N°1 - YouTube
    June 6, 2013 at 9:07:20 PM GMT+2 - permalink - archive.org - http://www.youtube.com/watch?v=SEvFH-nAKME
    musique
  • thumbnail
    HSC - Articles - IPsec : présentation technique
    June 6, 2013 at 11:29:22 AM GMT+2 - permalink - archive.org - http://www.hsc.fr/ressources/articles/ipsec-tech/index.html.fr
    ipsec
  • thumbnail
    Configuration d'un serveur mail avec Postfix - wiki.debian-fr
    June 5, 2013 at 10:16:09 PM GMT+2 - permalink - archive.org - http://www.isalo.org/wiki.debian-fr/Configuration_d%27un_serveur_mail_avec_Postfix
    mail
  • thumbnail
    IPsec - Wikipedia, the free encyclopedia
    June 5, 2013 at 9:19:09 PM GMT+2 - permalink - archive.org - http://en.wikipedia.org/wiki/Encapsulating_Security_Payload#Encapsulating_Security_Payload
    ipsec
  • thumbnail
    IPsec - SAD et SPD - Tutoriels en Folie

    sad spd

    June 5, 2013 at 6:14:32 PM GMT+2 - permalink - archive.org - http://www.tutorielsenfolie.com/tutoriels-21-ipsec-SAD-SPD.html
    ipsec
  • thumbnail
    Diffie–Hellman key exchange - Wikipedia, the free encyclopedia

    Article anglais encore une fois bien meilleur/complet que l'article français sur DH

    June 5, 2013 at 3:46:23 PM GMT+2 - permalink - archive.org - http://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange
    crypto chiffrement dh ipsec
  • security

    l'authenticité (de l'identité de l'émetteur et du récepteur)
    la confidentialité (le message peut être lu par son destinataire uniquement)
    l'intégrité du message (le message reste intact pendant le transfert)
    la non-répudiation (recommandé électronique)

    June 4, 2013 at 11:34:25 AM GMT+2 * - permalink - archive.org - https://links.infomee.fr/shaare/4w5qsg
    security
  • thumbnail
    [ Mibbit ] RIE06
    June 3, 2013 at 11:02:38 AM GMT+2 - permalink - archive.org - https://widget00.mibbit.com/?server=arnaudb.net%3A%2B1337&nick=mibbit_user%3F%3F%3F&channel=%23RIE06&settings=c76462e5055bace06e32d325963b39f2
    irc
  • Une astuce pour ajouter les dépôts PPA sur Debain | crowd42crowd42

    wget http://blog.anantshri.info/content/uploads/2010/09/add-apt-repository.sh.txt
    mv add-apt-repository.sh.txt /usr/sbin/add-apt-repository
    chmod o+x /usr/sbin/add-apt-repository
    chown root:root /usr/sbin/add-apt-repository

    [09:08:01] root@pc111-11 : /home/arnaud/Téléchargements #cat /usr/sbin/add-apt-repository

    !/bin/bash

    if [ $# -eq 1 ]
    NM=uname -a && date
    NAME=echo $NM | md5sum | cut -f1 -d" "
    then
    ppa_name=echo "$1" | cut -d":" -f2 -s
    if [ -z "$ppa_name" ]
    then
    echo "PPA name not found"
    echo "Utility to add PPA repositories in your debian machine"
    echo "$0 ppa:user/ppa-name"
    else
    echo "$ppa_name"
    echo "deb http://ppa.launchpad.net/$ppa_name/ubuntu lucid main" >> /etc/apt/sources.list
    apt-get update >> /dev/null 2> /tmp/${NAME}_apt_add_key.txt
    key=cat /tmp/${NAME}_apt_add_key.txt | cut -d":" -f6 | cut -d" " -f3
    apt-key adv --keyserver keyserver.ubuntu.com --recv-keys $key
    rm -rf /tmp/${NAME}_apt_add_key.txt
    fi
    else
    echo "Utility to add PPA repositories in your debian machine"
    echo "$0 ppa:user/ppa-name"
    fi

    June 3, 2013 at 9:06:19 AM GMT+2 - permalink - archive.org - http://www.crowd42.info/une-astuce-pour-ajouter-les-depots-ppa-sur-debain
    ppa debian
  • thumbnail
    CSS3 Drop Shadows Generator - Application

    Tool pour générer du CSS pour faire des jolis div avec ombre portée

    May 30, 2013 at 11:53:48 AM GMT+2 - permalink - archive.org - http://css3-drop-shadows.herokuapp.com/app
    css box shadow ombre
  • thumbnail
    Open vSwitch GRE Tunnel Configuration
    May 30, 2013 at 10:57:57 AM GMT+2 - permalink - archive.org - http://networkstatic.net/open-vswitch-gre-tunnel-configuration/
    ovs gre
  • thumbnail
    Using GRE Tunnels with Open vSwitch - blog.scottlowe.org - The weblog of an IT pro specializing in virtualization, storage, and servers
    May 30, 2013 at 10:54:08 AM GMT+2 - permalink - archive.org - http://blog.scottlowe.org/2013/05/07/using-gre-tunnels-with-open-vswitch/
    ovs gre
  • thumbnail
    sebastien genvo - YouTube

    Une chaîne YouTube sur la théorie des jeux vidéo

    May 28, 2013 at 8:46:38 PM GMT+2 - permalink - archive.org - https://www.youtube.com/user/SebastienGenvo
    game dev
  • thumbnail
    Gonfleur à Pied 5 Litres QUECHUA - Matelas Randonnée, Escalade,Trail - Decathlon
    May 28, 2013 at 7:36:27 PM GMT+2 - permalink - archive.org - http://www.decathlon.fr/gonfleur-a-pied-5-litres-id_8214434.html
    camping
  • thumbnail
    Matelas gonflable 70 QUECHUA - Matelas Randonnée, Escalade,Trail - Decathlon
    May 28, 2013 at 7:36:19 PM GMT+2 - permalink - archive.org - http://www.decathlon.fr/matelas-gonflable-70-id_8242019.html
    camping
  • thumbnail
    Installer Snort Snort-MySql et AcidBase sur Debian squeeze | Emmanuel Belair
    May 27, 2013 at 4:03:02 PM GMT+2 - permalink - archive.org - http://www.ebelair.fr/2011/06/21/installer-snort-snort-mysql-et-acidbase-sur-debian-squeeze/
    snort acid linux ids ips
  • Play curvefever
    May 26, 2013 at 2:33:31 PM GMT+2 - permalink - archive.org - http://curvefever.com/play2.php
    game snake multiplayer curve
Links per page: 20 50 100
◄Older
page 145 / 219
Newer►
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation