<< < 3 4 5 6 7 8 9 10 11 12 13 > >>   ∑:8894  Sort:Rank

What Is Windows Certificate Store
This section describes what is Windows Certificate Store - a PKI certificate store integrated in a Windows operating system.
2024-11-27, ∼118🔥, 0💬

"openssl x509" - X.509 Certificate Command
This section describes the 'openssl x509' command, which invokes the OpenSSL CLI to access OpenSSL functions.
2024-11-27, ∼115🔥, 0💬

References
List of reference materials used in this book.
2024-11-27, ∼111🔥, 0💬

"openssl genpkey -algorithm RSA" - RSA Private Key
This section describes the 'openssl genpkey -algorithm RSA' command, which generates a RSA private/public key pair. It replaces the old 'openssl genrsa' command
2024-11-27, ∼109🔥, 0💬

getSelection() - Getting Selected Button
This section provides a tutorial example on how to use the getSelection() method to know which button is selected in a button group.
2024-11-26, ≈20🔥, 4💬

💬 2024-11-26 davide goga: useful grazie

💬 2016-02-22 aaa: God is the greatest

💬 2016-02-22 aaa: we are here to learn

Archived: Downloading and Installing JDK 1.6
This section describes how to download and install Java SE (JDK) 1.6 Update 2 on a Windows XP system.
2024-11-25, ∼643🔥, 3💬

💬 2024-08-17 Herong: NullPTR, can you download the JDK .exe file on the newer computer and transfer it to your Windows XP?

💬 2024-08-15 NullPTR: the link to download javase will redirect to oracle.com,but i cant click agree eula on the download page with chrome 47 on windo...

XMLin() and XMLout() Methods
This section describes two key methods in the XML::Simple module, XMLin() and XMLout(), to convert XML text string into a hash structure representing the XML structure and to convert the hash back to a string.
2024-11-20, ∼1633🔥, 2💬

EC Cryptography Tutorials - Herong's Tutorial Examples
This EC (Elliptic Curve) cryptography tutorial book is a collection of notes and sample codes written by the author while he was learning cryptography technologies himself. Topics include rule of chord and point addition on elliptic curves; Abelian groups with additive/multiplicative notations; EC a...
2024-11-16, ∼6293🔥, 4💬

💬 2022-07-27 Aman: Perfect book to help my 'encoding' project. Thank you!

💬 2020-06-23 Herong: Chris, contact me by email. I will send you a PDF copy. Thanks for your comment.

💬 2020-06-22 chris: Sorry for fuss. Bought this ebook on google. bad idea. Should have not done that and just got the physical book or maybe ebook o...

💬 2019-01-01 Yale: Thank you!

PKI Tutorials - Herong's Tutorial Examples
This tutorial book is a collection of notes and sample codes written by the author while he was learning PKI (Public Key Infrastructure) technologies himself. Topics include Root CA (Certificate Authorities); SSL, TLS, and HTTPS; Server and client authentication processes; Communication data encrypt...
2024-11-16, ≈12🔥, 5💬

💬 2024-11-16 Jay Sarna: Thankyou Dr. Yang. Got it.

💬 2024-11-10 Herong: Hi Jay, I have shared the PDF file with your google account. You should receive a notification with a download link.

💬 2024-10-03 Herong: Hi Jay, I am sorry that you haven't received the PDF file yet. It was sent on Sep 12 to your gmail address. It looks like gmail ...

💬 2024-10-01 Jay Sarna: Request for purchased books ----------------------------- Hello Dr. Yang I hope you are ok. I purchased pdf copy of this book vi...

💬 2016-02-07 john: thanks!

Shift-JIS Encoding
This section provides a quick introduction of Shift-JIS, also called MS Kanji, encoding, which maps a JIS X0208 character to a 2-byte sequence using a complicated schema designed by Microsoft.
2024-11-14, ∼4274🔥, 10💬

💬 2022-03-12 ddfdfd: hey how are you

💬 2021-12-01 lakshay: what is shift-jis encoding

💬 2020-09-18 Utkarsj: hello hi bye

💬 2020-04-03 Qqqq: スーパー

💬 2019-07-16 Duc: かきくけこ

UTF-16 Encoding
This section provides a quick introduction of the UTF-16 (Unicode Transformation Format - 16-bit) encoding for Unicode character set. Paired surrogates are used for characters in the U+10000...0x10FFFF range.
2024-11-04, ∼4742🔥, 5💬

💬 2021-11-09 77: *9999

💬 2016-12-28 anson: what a detail of explain. i think i complete understand it. thanks very much.

Chinese Character String with GB18030 Encoding
This section providing information on handling Chinese character string literals in GB18030 encoding. header() function must be called to override the HTTP response header 'Content-type' setting to GB18030 in PHP 7.
2024-10-29, ∼449🔥, 3💬

💬 2024-10-29 Herong: Yi, looks like you have fixed your code issue. Your website displays Chinese characters correctly now.

💬 2024-10-26 Yi Jiang: Thanks Yang! But my website still display wrong: https://www.typingchinese.com/bishun .phpthis happens after hosting server upgr...

What Is Generator Expression
This section provides a quick introduction of generator expression, which contains a 'for' clause enclosed in parentheses and returns a generator iterator.
2024-10-29, ∼181🔥, 0💬

What Is Double-Generator Expression
This section provides a quick introduction of filtered generator expression, which contains a 'for' clause with a 'if' sub-clause enclosed in parentheses and returns a generator iterator.
2024-10-29, ∼156🔥, 0💬

Iterable Objects of Built-in Data Types
This section lists all built-in data types that can be used to create iterable objects.
2024-10-29, ∼148🔥, 0💬

What Is Iterator Object
This section provides a quick introduction on iterator object, which is an object with a required instance method to return the next item from a collection.
2024-10-29, ∼145🔥, 0💬

List, Set and Dictionary Comprehensions
This chapter provides introductions and tutorial examples about list, set and dictionary comprehensions. Topics include introduction on list, set and dictionary comprehensions; examples of comprehensions with filtering conditions and nested loops, comparison of generator expressions and comprehensio...
2024-10-29, ∼145🔥, 0💬

What Is Filtered Generator Expression
This section provides a quick introduction of filtered generator expression, which contains a 'for' clause with a 'if' sub-clause enclosed in parentheses and returns a generator iterator.
2024-10-29, ∼143🔥, 0💬

Data Type - 'set' for Unordered Collection
This section describes the 'set' data type, which stores a collection of unordered and unique elements. 'set' data objects are mutable.
2024-10-29, ∼143🔥, 0💬

What Is Iterable Object
This section provides a quick introduction on iterable object, which is an object with a required instance method to return an iterator object.
2024-10-29, ∼142🔥, 0💬

What Is Generator Iterator
This section provides a quick introduction of generator iterator, which is created by a generator function or a generator expression.
2024-10-29, ∼139🔥, 0💬

GetStringAsync() Method Example Program
A tutorial example is provided on how to use GetStringAsync() method in the System.Net.Http.HttpClient class to send a GET request in a child thread as am asynchronous operation.
2024-10-27, ∼3010🔥, 3💬

"bitcoin-cli walletpassphrase" - Unlock Wallet
This section describes how to unlock with 'bitcoin-cli walletpassphrase' command.
2024-10-26, ∼1140🔥, 2💬

💬 2023-07-25 Elizabeth Ruth: There are many cases of cryptocurrency theft currently on circulation which I also fell victim last week but I was fortunate to ...

Visual C# 2010 Express Edition
This chapter provides tutorial examples and notes on Microsoft Visual C# 2010 Express. Topics include downloading and installing Visual C# 2010 Express; creating a solution project; compiling and running a C# program.
2024-10-10, ∼2423🔥, 6💬

💬 2024-10-10 jerry: grazie

💬 2021-08-09 Phothong Duangpasearch: YEs

<< < 3 4 5 6 7 8 9 10 11 12 13 > >>   ∑:8894  Sort:Rank