
Protégé : RSA public key : Behind the scene
17 avril 2020
Il n’y a pas d’extrait, car cette publication est protégée.
17 avril 2020
Il n’y a pas d’extrait, car cette publication est protégée.
Posté dans Boulot, CryptoCommentaires fermés sur Protégé : RSA public key : Behind the scene
15 avril 2020
A ceux qui auraient tendance à voir une référence à autre choses (20 % d’armée + 80 % d’air, par exemple) : Passez votre chemin ! En mathématiques, l’indicatrice d’Euler est une fonction de la théorie des nombres. Elle intervient en mathématiques pures, à la fois en théorie des groupes, en théorie algébrique des nombres […]
Posté dans CryptoCommentaires fermés sur L’arme est d’Euler
10 avril 2020
Very first thing : Read That F*** Manual ! $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA and specify a password value of « whatYouWantButNotChangeIt ». Edit your server.xml file, beware that commented examples provided could be very far from what youy need : <!-- Define […]
Posté dans BoulotCommentaires fermés sur TLS setup for Apache Tomcat
06 avril 2020
Read that f… RFC 1421 : Privacy Enhancement for Internet Electronic Mail https://lapo.it/asn1js https://docs.microsoft.com/en-us/windows/win32/seccertenroll/about-encoded-length-and-value-bytes http://javadoc.iaik.tugraz.at/iaik_jce/current/iaik/x509/PublicKeyInfo.html https://medium.com/@bn121rajesh/understanding-rsa-public-key-70d900b1033c # Generate 1024 bit Private key $ openssl genrsa -out myprivate.pem 1024# Separate the public part from the Private key file. $ openssl rsa -in myprivate.pem -pubout > mypublic.pem# Display the contents of private key $ cat myprivate.pem —–BEGIN […]
Posté dans Crypto, PKI, ICP, IGC1 Commentaire
Posté dans InclassableCommentaires fermés sur Protégé : solutions
01 avril 2020
Juste besoin de cet execellent passage de Wikipedia (20200401) RSA (Rivest–Shamir–Adleman) is one of the first public-key cryptosystems and is widely used for secure data transmission. In such a cryptosystem, the encryption key is public and distinct from the decryption key which is kept secret (private). In RSA, this asymmetry is based on the practical […]
Posté dans InclassableCommentaires fermés sur RSA Cryptosystem overview
01 avril 2020
Il n’y a pas d’extrait, car cette publication est protégée.
Posté dans InclassableCommentaires fermés sur Protégé : RSA avec openSSL (petits exercices)
01 avril 2020
Intégralement et honteusement pompé sur https://www.fil.univ-lille1.fr/~wegrzyno/portail/PAC/Doc/TP-Certificats/tp-certif002.html 1. Génération d’une paire de clés On peut générer une paire de clés RSA avec la commande genrsa de openSSL. $ openssl genrsa -out <fichier> <taille> où fichier est un nom de fichier de sauvegarde de la clé, et taille et la taille souhaitée (exprimée en bits) du modulus […]
Posté dans BoulotCommentaires fermés sur RSA avec openSSL
01 avril 2020
A few basics about RSA (Rivest – Shamir – Adleman) cryptography encryption and decryption in java. Just for comparison with what we habitually do with openSSL without understanding any command 🙂 Check it online. Reminder : RSA is an Asymmetric encryption technique that uses two different keys as public and private keys to perform the […]
Posté dans InclassableCommentaires fermés sur RSA encryption and decryption in Java
27 mars 2020
Sécuriser les données au repos c’est important, mais sécuriser les flux l’est tout autant. Donc, après une petite synthèse sur Data-at-Rest Encryption avec Transparent Data Encryption, voyons comment mettre un peu de confidentialité dans le transport. Un peu de cuisine pour commencer … En ces temps de confinement, cet article servira de support à un […]
Posté dans BoulotCommentaires fermés sur Data-in-Transit Encryption with MariaDB
Added on 15 janvier 2021