<< < 8 9 10 11 12 13 14 15 > >>   ∑:342  Sort:Rank

What Is a Digital Signature?
This section describes what is a digital signature and what is the process of generating and verifying digital signature from a message.
2020-02-23, 4204🔥, 4💬

💬 2020-02-23 Herong: Sanjay, you are welcome!

💬 2020-02-17 Sanjay: Thank u so much

💬 2019-01-29 nilo: Hola

💬 2016-04-26 santosh patil: Its easy to understand

DESSubkeysTest.java - DES Key Schedule Algorithm Illustration
This section provides a tutorial Java program, DESSubkeysTest.java, to illustrate how DES key schedule algorithm works.
2020-02-10, 1565🔥, 3💬

💬 2020-02-10 Art: No comments

💬 2018-07-20 aqil: havr fun

mcrypt Library for PHP
This section describes the mcrypt library - encryption extension for PHP. mcrypt supports DES and many other encryption algorithms.
2019-12-19, 310🔥, 1💬

Testing RsaKeyEncryption.java with a 16-bit Key
This section provides a tutorial example on testing my RSA encryption and decryption implementation using the java.math.BigInteger class with a 16-bit key.
2019-09-02, 470🔥, 1💬

References
List of reference materials used in this book.
2019-06-30, 439🔥, 1💬

💬 2019-06-30 Wayne: This is very helpful, Thank you!

"keytool" Generating Maria's Private Key
This section provides a tutorial example on how to use 'keytool' to generate a pair of private key and public key.
2019-05-08, 274🔥, 1💬

What Is Block Cipher?
This section describes what is block cipher - An encryption scheme in which 'the clear text is broken up into blocks of fixed length, and encrypted one block at a time'.
2019-04-03, 523🔥, 2💬

💬 2019-03-31 Herong: Patrick, f() represents a generic block cipher process that convert a block of plaintext into a block of ciphertext with a secre...

💬 2019-03-26 Patrick: if f is a block cipher, then how can f(R0,k1) be performed? f is likely to be something like a function?

java.security.KeyFactory - Reading Encoded Keys
This section describes the java.security.KeyFactory class, which allows you to convert key spec objects back to key objects. Full process of reading and converting encoded key files back to key objects are also provided.
2019-03-23, 856🔥, 2💬

💬 2019-03-23 Herong: See the next tutorial " JcaKeyFactoryTest.java - Key Factory Test Program " for code samples.

💬 2019-03-13 wubba lubba dub dub: code samples along with this would've been helpful

Example Vector of AES Encryption
An example vector of AES-128 encryption is presented. Round keys and state values of all 11 rounds are included to help users to verify their AES implementation.
2019-02-24, 1262🔥, 1💬

"keytool" Exporting Certificates in DER and PEM
This section provides a tutorial example on how to export certificates in DER and PEM format using the 'keytool -exportcert' command.
2019-02-20, 52641🔥, 5💬

💬 2019-02-20 Ajay Singh: Ok

💬 2018-10-06 Herong: Srinivas, what are those special characters? Are they appended to the keystore file or the certificate file?

💬 2018-09-25 Srinivas: After generating certificate, there are some special characters appended.

💬 2016-06-27 Herong: Mandar, can you double check your command? The error indicates you entered a wrong password.

💬 2016-06-23 Mandar: converting to der is sucessful. while converting to pem, I am getting below error. keytool error: java.io.IOException: Keystore ...

Cryptography Terminology
This section provides descriptions on some commonly used cryptography terminologies
2019-02-18, 3310🔥, 2💬

💬 2019-02-18 Hh: &lt;body bgcolor="red">

💬 2015-10-24 dexter aparicio: this site is my favorite reference on cryptography topics

AES Key Schedule Example
An example of the AES key schedule is provided to illustrate how 11 round keys get calculate from a given 128-bit cipher key.
2019-02-18, 5036🔥, 1💬

💬 2019-02-18 Ggf: hello

Using SHA1 Message Digest in Java
This section provides a tutorial example on how to use SHA1 message digest algorithm in Java. The JDK JCE package offers the SHA1 algorithm through a generic message digest class, javax.security.MessageDigest.
2018-12-04, 26261🔥, 11💬

💬 2018-12-04 Gowtham: Great & Layman Terms

💬 2018-09-12 Onkar D: very good summary about SHA1

💬 2018-08-31 Munikumar: Great...

💬 2017-10-24 Siva: Thanks

💬 2017-08-24 Superman: &lt;script>alert("xss");&lt; /script>

(More comments ...)

Archived: Visiting "https" Web Site with Firefox 3
This section describes how Firefox 3 shows a lock icon when you visit an 'https' Web site to provide you more security related information.
2018-11-10, 348🔥, 2💬

💬 2018-11-10 Herong: Falle, try to use whois.icann.org to get more information about that website.

💬 2018-11-10 Falle: Thanks for your help . I couldn't access full information about cardtopia.org a website that scammed me of apple gift cards wort...

Introduction to DES Algorithm
This chapter provides tutorial examples and notes about DES (Data Encryption Standard) algorithm. Topics include description of block cipher, DES encryption algorithm, Round Keys Generation, DES decryption algorithm.
2018-10-18, 1837🔥, 4💬

💬 2018-10-18 sam: harry please stop bullying me

"OpenSSL" Signing CSR Generated by "keytool"
This chapter provides tutorial notes and example codes on using 'OpenSSL' to act as CA (Certificate Authority). Topics include setting up 'OpenSSL' as CA; using 'keytool' to generate CA private key; using 'keytool' to generate CSR (Certificate Signing Request); using 'OpenSSL' to sign CSR, using 'ke...
2018-07-12, 451🔥, 1💬

"openssl pkcs12" Merging Key with Certificate
This section provides a tutorial example on how to merge a private key and its self-signed certificate into a single PKCS#12 file, with can be then encoded as PEM and encrypted with DES.
2018-07-07, 2224🔥, 1💬

"keytool" Importing Certificates in DER and PEM
This section provides a tutorial example on how to use 'keytool' to import certificates in DER and PEM formats generated by 'OpenSSL' into 'keystore' files.
2018-06-28, 36598🔥, 2💬

💬 2016-04-01 MM: Thank you, this is very helpful.

Java Implementation of DES - Test Cases
This section provides two test cases for the Java implementation of DES algorithm, CipherDES.java.
2018-03-30, 387🔥, 2💬

"openssl enc" Converting Keys from Binary to PEM
This section provides a tutorial example on how to convert a private and public key pair stored in binary PKCS#8 format into PEM (Privacy Enhanced Mail) format with the 'openssl enc' command.
2018-01-20, 6584🔥, 2💬

💬 2018-01-20 Herong: Dan, Thanks for comment. The "-inform" and "-outform" options are definitely better options. This tutorial will be updated.

💬 2018-01-17 Dan Lukes: openssl dsa understands binary key's format as well. Just claim it using option '-inform DER'. Moreover, 'openssl dsa -inform DE...

OpenSSL Introduction and Installation
This chapter provides tutorial notes and example codes on OpenSSL. Topics include introduction of OpenSSL; installing OpenSSL on Windows systems.
2017-12-24, 1416🔥, 4💬

💬 2016-11-28 musa: thanks

What Is SHA1 Message Digest Algorithm?
This section describes what is SHA1 (Secure Hash Algorithm 1) - a message digest algorithm which takes as input a message of arbitrary length and produces as output a 160-bit 'fingerprint'.
2017-12-09, 7956🔥, 6💬

💬 2017-12-09 Herong: See the next tutorial: SHA1 Message Digest Algorithm Overview .

💬 2017-12-04 V: where can we find sha-1 formula ?

💬 2016-01-16 raza: i am raza see you latter

💬 2015-10-10 Herong: Ash, the next tutorial may help you understand better: SHA1 Message Digest Algorithm Overview

💬 2015-10-09 Ash: Please can u explain clearly..I dint understood

(More comments ...)

DSA 512-bit and 1024-bit Key Pair Examples
This section provides 2 DSA key pair examples, 512-bit and 1024-bit, using DsaKeyGenerator.java.
2017-11-08, 1444🔥, 1💬

💬 2017-11-08 abc: ok

Installing OpenSSL on Windows
This section provides a tutorial example on how to install OpenSSL on a Windows system.
2017-10-29, 51086🔥, 18💬

💬 2017-10-29 Max: Te possino! How I obtain the .o, .h files to use like include in my .c mail file?

💬 2017-02-03 Jim: Now run along...

💬 2017-02-03 Jim: If I did this just once we would not be even, cause you did it once when you put it up here..

💬 2016-12-19 red: Please write meaningful comments. Thanks!

💬 2016-12-19 Thank: Thanks!

(More comments ...)

<< < 8 9 10 11 12 13 14 15 > >>   ∑:342  Sort:Rank