Essential cryptography for JavaScript developers :: a practical guide to leveraging common cryptographic operations in Node.js and the browser /
Discover how to take advantage of common cryptographic operations to build safer apps that respect users' privacy with the help of examples in JavaScript for Node.js and browsers Key Features Understand how to implement common cryptographic operations in your code with practical examples Learn...
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Elektronisch E-Book |
Sprache: | English |
Veröffentlicht: |
Birmingham :
Packt Publishing,
2021.
|
Schlagworte: | |
Online-Zugang: | Volltext |
Zusammenfassung: | Discover how to take advantage of common cryptographic operations to build safer apps that respect users' privacy with the help of examples in JavaScript for Node.js and browsers Key Features Understand how to implement common cryptographic operations in your code with practical examples Learn about picking modern safe algorithms, which libraries you should rely on, and how to use them correctly Build modern and secure applications that respect your users' privacy with cryptography Book Description If you're a software developer, this book will give you an introduction to cryptography, helping you understand how to make the most of it for your applications. The book contains extensive code samples in JavaScript, both for Node.js and for frontend apps running in a web browser, although the core concepts can be used by developers working with any programming language and framework. With a purely hands-on approach that is focused on sharing actionable knowledge, you'll learn about the common categories of cryptographic operations that you can leverage in all apps you're developing, including hashing, encryption with symmetric, asymmetric and hybrid ciphers, and digital signatures. You'll learn when to use these operations and how to choose and implement the most popular algorithms to perform them, including SHA-2, Argon2, AES, ChaCha20-Poly1305, RSA, and Elliptic Curve Cryptography. Later, you'll learn how to deal with password and key management. All code in this book is written in JavaScript and designed to run in Node.js or as part of frontend apps for web browsers. By the end of this book, you'll be able to build solutions that leverage cryptography to protect user privacy, offer better security against an expanding and more complex threat landscape, help meet data protection requirements, and unlock new opportunities. What you will learn Write JavaScript code that uses cryptography running within a Node.js environment for the server-side or in frontend applications for web browsers Use modern, safe hashing functions for calculating digests and key derivation, including SHA-2 and Argon2 Practice encrypting messages and files with a symmetric key using AES and ChaCha20-Poly1305 Use asymmetric and hybrid encryption, leveraging RSA and Elliptic Curve Cryptography with ECDH and ECIES Calculate and verify digital signatures using RSA and ECDSA/EdDSA Manage passwords and encryption keys safely Who this book is for This cryptography book is an introductory guide for software developers who don't necessarily have a background in cryptography but are interested in learning how to integrate it in their solutions, correctly and safely. You'll need to have at least intermediate-level knowledge of building apps with JavaScript and familiarity with Node.js to make the most of this book. |
Beschreibung: | 1 online resource |
ISBN: | 1801076316 9781801076319 |
Internformat
MARC
LEADER | 00000cam a22000007i 4500 | ||
---|---|---|---|
001 | ZDB-4-EBA-on1295149061 | ||
003 | OCoLC | ||
005 | 20241004212047.0 | ||
006 | m o d | ||
007 | cr ||||||||||| | ||
008 | 211018s2021 enk o 000 0 eng d | ||
040 | |a UKMGB |b eng |e rda |e pn |c UKMGB |d ORMDA |d OCLCO |d OCLCF |d N$T |d UKAHL |d OCLCQ |d IEEEE |d OCLCO | ||
015 | |a GBC1H4945 |2 bnb | ||
016 | 7 | |a 020364684 |2 Uk | |
020 | |a 1801076316 | ||
020 | |a 9781801076319 |q (electronic bk.) | ||
020 | |z 9781801075336 (pbk.) | ||
035 | |a (OCoLC)1295149061 | ||
037 | |a 9781801076319 |b Packt Publishing Pvt. Ltd | ||
037 | |a 9781801075336 |b O'Reilly Media | ||
037 | |a 10162292 |b IEEE | ||
050 | 4 | |a QA76.9.A25 | |
082 | 7 | |a 005.8 |2 23 | |
049 | |a MAIN | ||
100 | 1 | |a Segala, Alessandro, |e author. | |
245 | 1 | 0 | |a Essential cryptography for JavaScript developers : |b a practical guide to leveraging common cryptographic operations in Node.js and the browser / |c Alessandro Segala. |
264 | 1 | |a Birmingham : |b Packt Publishing, |c 2021. | |
300 | |a 1 online resource | ||
336 | |a text |2 rdacontent | ||
337 | |a computer |2 rdamedia | ||
338 | |a online resource |2 rdacarrier | ||
588 | |a Description based on CIP data; resource not viewed. | ||
520 | |a Discover how to take advantage of common cryptographic operations to build safer apps that respect users' privacy with the help of examples in JavaScript for Node.js and browsers Key Features Understand how to implement common cryptographic operations in your code with practical examples Learn about picking modern safe algorithms, which libraries you should rely on, and how to use them correctly Build modern and secure applications that respect your users' privacy with cryptography Book Description If you're a software developer, this book will give you an introduction to cryptography, helping you understand how to make the most of it for your applications. The book contains extensive code samples in JavaScript, both for Node.js and for frontend apps running in a web browser, although the core concepts can be used by developers working with any programming language and framework. With a purely hands-on approach that is focused on sharing actionable knowledge, you'll learn about the common categories of cryptographic operations that you can leverage in all apps you're developing, including hashing, encryption with symmetric, asymmetric and hybrid ciphers, and digital signatures. You'll learn when to use these operations and how to choose and implement the most popular algorithms to perform them, including SHA-2, Argon2, AES, ChaCha20-Poly1305, RSA, and Elliptic Curve Cryptography. Later, you'll learn how to deal with password and key management. All code in this book is written in JavaScript and designed to run in Node.js or as part of frontend apps for web browsers. By the end of this book, you'll be able to build solutions that leverage cryptography to protect user privacy, offer better security against an expanding and more complex threat landscape, help meet data protection requirements, and unlock new opportunities. What you will learn Write JavaScript code that uses cryptography running within a Node.js environment for the server-side or in frontend applications for web browsers Use modern, safe hashing functions for calculating digests and key derivation, including SHA-2 and Argon2 Practice encrypting messages and files with a symmetric key using AES and ChaCha20-Poly1305 Use asymmetric and hybrid encryption, leveraging RSA and Elliptic Curve Cryptography with ECDH and ECIES Calculate and verify digital signatures using RSA and ECDSA/EdDSA Manage passwords and encryption keys safely Who this book is for This cryptography book is an introductory guide for software developers who don't necessarily have a background in cryptography but are interested in learning how to integrate it in their solutions, correctly and safely. You'll need to have at least intermediate-level knowledge of building apps with JavaScript and familiarity with Node.js to make the most of this book. | ||
505 | 0 | |a Table of Contents Cryptography for Developers Dealing with Binary and Random Data File and Password Hashing with Node.js Symmetric Encryption in Node.js Using Asymmetric and Hybrid Encryption in Node.js Digital Signatures with Node.js and Trust Introduction to Cryptography in the Browser Performing Common Cryptographic Operations in the Browser. | |
650 | 0 | |a Computer security. |0 http://id.loc.gov/authorities/subjects/sh90001862 | |
650 | 0 | |a Cryptography. |0 http://id.loc.gov/authorities/subjects/sh85034453 | |
650 | 0 | |a JavaScript (Computer program language) |0 http://id.loc.gov/authorities/subjects/sh96004880 | |
650 | 2 | |a Computer Security |0 https://id.nlm.nih.gov/mesh/D016494 | |
650 | 6 | |a Sécurité informatique. | |
650 | 6 | |a Cryptographie. | |
650 | 6 | |a JavaScript (Langage de programmation) | |
650 | 7 | |a Computer security |2 fast | |
650 | 7 | |a Cryptography |2 fast | |
650 | 7 | |a JavaScript (Computer program language) |2 fast | |
776 | 0 | 8 | |i Print version: |z 9781801075336 |
856 | 4 | 0 | |l FWS01 |p ZDB-4-EBA |q FWS_PDA_EBA |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=3148937 |3 Volltext |
938 | |a Askews and Holts Library Services |b ASKH |n BDZ0049165627 | ||
938 | |a EBSCOhost |b EBSC |n 3148937 | ||
994 | |a 92 |b GEBAY | ||
912 | |a ZDB-4-EBA | ||
049 | |a DE-863 |
Datensatz im Suchindex
DE-BY-FWS_katkey | ZDB-4-EBA-on1295149061 |
---|---|
_version_ | 1816882555935260672 |
adam_text | |
any_adam_object | |
author | Segala, Alessandro |
author_facet | Segala, Alessandro |
author_role | aut |
author_sort | Segala, Alessandro |
author_variant | a s as |
building | Verbundindex |
bvnumber | localFWS |
callnumber-first | Q - Science |
callnumber-label | QA76 |
callnumber-raw | QA76.9.A25 |
callnumber-search | QA76.9.A25 |
callnumber-sort | QA 276.9 A25 |
callnumber-subject | QA - Mathematics |
collection | ZDB-4-EBA |
contents | Table of Contents Cryptography for Developers Dealing with Binary and Random Data File and Password Hashing with Node.js Symmetric Encryption in Node.js Using Asymmetric and Hybrid Encryption in Node.js Digital Signatures with Node.js and Trust Introduction to Cryptography in the Browser Performing Common Cryptographic Operations in the Browser. |
ctrlnum | (OCoLC)1295149061 |
dewey-full | 005.8 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 005 - Computer programming, programs, data, security |
dewey-raw | 005.8 |
dewey-search | 005.8 |
dewey-sort | 15.8 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
format | Electronic eBook |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>05312cam a22005537i 4500</leader><controlfield tag="001">ZDB-4-EBA-on1295149061</controlfield><controlfield tag="003">OCoLC</controlfield><controlfield tag="005">20241004212047.0</controlfield><controlfield tag="006">m o d </controlfield><controlfield tag="007">cr |||||||||||</controlfield><controlfield tag="008">211018s2021 enk o 000 0 eng d</controlfield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">UKMGB</subfield><subfield code="b">eng</subfield><subfield code="e">rda</subfield><subfield code="e">pn</subfield><subfield code="c">UKMGB</subfield><subfield code="d">ORMDA</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCF</subfield><subfield code="d">N$T</subfield><subfield code="d">UKAHL</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">IEEEE</subfield><subfield code="d">OCLCO</subfield></datafield><datafield tag="015" ind1=" " ind2=" "><subfield code="a">GBC1H4945</subfield><subfield code="2">bnb</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">020364684</subfield><subfield code="2">Uk</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1801076316</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781801076319</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="z">9781801075336 (pbk.)</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)1295149061</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">9781801076319</subfield><subfield code="b">Packt Publishing Pvt. Ltd</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">9781801075336</subfield><subfield code="b">O'Reilly Media</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">10162292</subfield><subfield code="b">IEEE</subfield></datafield><datafield tag="050" ind1=" " ind2="4"><subfield code="a">QA76.9.A25</subfield></datafield><datafield tag="082" ind1="7" ind2=" "><subfield code="a">005.8</subfield><subfield code="2">23</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">MAIN</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Segala, Alessandro,</subfield><subfield code="e">author.</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Essential cryptography for JavaScript developers :</subfield><subfield code="b">a practical guide to leveraging common cryptographic operations in Node.js and the browser /</subfield><subfield code="c">Alessandro Segala.</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Birmingham :</subfield><subfield code="b">Packt Publishing,</subfield><subfield code="c">2021.</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">1 online resource</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="a">text</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="a">computer</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="a">online resource</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="588" ind1=" " ind2=" "><subfield code="a">Description based on CIP data; resource not viewed.</subfield></datafield><datafield tag="520" ind1=" " ind2=" "><subfield code="a">Discover how to take advantage of common cryptographic operations to build safer apps that respect users' privacy with the help of examples in JavaScript for Node.js and browsers Key Features Understand how to implement common cryptographic operations in your code with practical examples Learn about picking modern safe algorithms, which libraries you should rely on, and how to use them correctly Build modern and secure applications that respect your users' privacy with cryptography Book Description If you're a software developer, this book will give you an introduction to cryptography, helping you understand how to make the most of it for your applications. The book contains extensive code samples in JavaScript, both for Node.js and for frontend apps running in a web browser, although the core concepts can be used by developers working with any programming language and framework. With a purely hands-on approach that is focused on sharing actionable knowledge, you'll learn about the common categories of cryptographic operations that you can leverage in all apps you're developing, including hashing, encryption with symmetric, asymmetric and hybrid ciphers, and digital signatures. You'll learn when to use these operations and how to choose and implement the most popular algorithms to perform them, including SHA-2, Argon2, AES, ChaCha20-Poly1305, RSA, and Elliptic Curve Cryptography. Later, you'll learn how to deal with password and key management. All code in this book is written in JavaScript and designed to run in Node.js or as part of frontend apps for web browsers. By the end of this book, you'll be able to build solutions that leverage cryptography to protect user privacy, offer better security against an expanding and more complex threat landscape, help meet data protection requirements, and unlock new opportunities. What you will learn Write JavaScript code that uses cryptography running within a Node.js environment for the server-side or in frontend applications for web browsers Use modern, safe hashing functions for calculating digests and key derivation, including SHA-2 and Argon2 Practice encrypting messages and files with a symmetric key using AES and ChaCha20-Poly1305 Use asymmetric and hybrid encryption, leveraging RSA and Elliptic Curve Cryptography with ECDH and ECIES Calculate and verify digital signatures using RSA and ECDSA/EdDSA Manage passwords and encryption keys safely Who this book is for This cryptography book is an introductory guide for software developers who don't necessarily have a background in cryptography but are interested in learning how to integrate it in their solutions, correctly and safely. You'll need to have at least intermediate-level knowledge of building apps with JavaScript and familiarity with Node.js to make the most of this book.</subfield></datafield><datafield tag="505" ind1="0" ind2=" "><subfield code="a">Table of Contents Cryptography for Developers Dealing with Binary and Random Data File and Password Hashing with Node.js Symmetric Encryption in Node.js Using Asymmetric and Hybrid Encryption in Node.js Digital Signatures with Node.js and Trust Introduction to Cryptography in the Browser Performing Common Cryptographic Operations in the Browser.</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Computer security.</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh90001862</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Cryptography.</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh85034453</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">JavaScript (Computer program language)</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh96004880</subfield></datafield><datafield tag="650" ind1=" " ind2="2"><subfield code="a">Computer Security</subfield><subfield code="0">https://id.nlm.nih.gov/mesh/D016494</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Sécurité informatique.</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Cryptographie.</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">JavaScript (Langage de programmation)</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Computer security</subfield><subfield code="2">fast</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Cryptography</subfield><subfield code="2">fast</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">JavaScript (Computer program language)</subfield><subfield code="2">fast</subfield></datafield><datafield tag="776" ind1="0" ind2="8"><subfield code="i">Print version:</subfield><subfield code="z">9781801075336</subfield></datafield><datafield tag="856" ind1="4" ind2="0"><subfield code="l">FWS01</subfield><subfield code="p">ZDB-4-EBA</subfield><subfield code="q">FWS_PDA_EBA</subfield><subfield code="u">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=3148937</subfield><subfield code="3">Volltext</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">Askews and Holts Library Services</subfield><subfield code="b">ASKH</subfield><subfield code="n">BDZ0049165627</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">EBSCOhost</subfield><subfield code="b">EBSC</subfield><subfield code="n">3148937</subfield></datafield><datafield tag="994" ind1=" " ind2=" "><subfield code="a">92</subfield><subfield code="b">GEBAY</subfield></datafield><datafield tag="912" ind1=" " ind2=" "><subfield code="a">ZDB-4-EBA</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-863</subfield></datafield></record></collection> |
id | ZDB-4-EBA-on1295149061 |
illustrated | Not Illustrated |
indexdate | 2024-11-27T13:30:29Z |
institution | BVB |
isbn | 1801076316 9781801076319 |
language | English |
oclc_num | 1295149061 |
open_access_boolean | |
owner | MAIN DE-863 DE-BY-FWS |
owner_facet | MAIN DE-863 DE-BY-FWS |
physical | 1 online resource |
psigel | ZDB-4-EBA |
publishDate | 2021 |
publishDateSearch | 2021 |
publishDateSort | 2021 |
publisher | Packt Publishing, |
record_format | marc |
spelling | Segala, Alessandro, author. Essential cryptography for JavaScript developers : a practical guide to leveraging common cryptographic operations in Node.js and the browser / Alessandro Segala. Birmingham : Packt Publishing, 2021. 1 online resource text rdacontent computer rdamedia online resource rdacarrier Description based on CIP data; resource not viewed. Discover how to take advantage of common cryptographic operations to build safer apps that respect users' privacy with the help of examples in JavaScript for Node.js and browsers Key Features Understand how to implement common cryptographic operations in your code with practical examples Learn about picking modern safe algorithms, which libraries you should rely on, and how to use them correctly Build modern and secure applications that respect your users' privacy with cryptography Book Description If you're a software developer, this book will give you an introduction to cryptography, helping you understand how to make the most of it for your applications. The book contains extensive code samples in JavaScript, both for Node.js and for frontend apps running in a web browser, although the core concepts can be used by developers working with any programming language and framework. With a purely hands-on approach that is focused on sharing actionable knowledge, you'll learn about the common categories of cryptographic operations that you can leverage in all apps you're developing, including hashing, encryption with symmetric, asymmetric and hybrid ciphers, and digital signatures. You'll learn when to use these operations and how to choose and implement the most popular algorithms to perform them, including SHA-2, Argon2, AES, ChaCha20-Poly1305, RSA, and Elliptic Curve Cryptography. Later, you'll learn how to deal with password and key management. All code in this book is written in JavaScript and designed to run in Node.js or as part of frontend apps for web browsers. By the end of this book, you'll be able to build solutions that leverage cryptography to protect user privacy, offer better security against an expanding and more complex threat landscape, help meet data protection requirements, and unlock new opportunities. What you will learn Write JavaScript code that uses cryptography running within a Node.js environment for the server-side or in frontend applications for web browsers Use modern, safe hashing functions for calculating digests and key derivation, including SHA-2 and Argon2 Practice encrypting messages and files with a symmetric key using AES and ChaCha20-Poly1305 Use asymmetric and hybrid encryption, leveraging RSA and Elliptic Curve Cryptography with ECDH and ECIES Calculate and verify digital signatures using RSA and ECDSA/EdDSA Manage passwords and encryption keys safely Who this book is for This cryptography book is an introductory guide for software developers who don't necessarily have a background in cryptography but are interested in learning how to integrate it in their solutions, correctly and safely. You'll need to have at least intermediate-level knowledge of building apps with JavaScript and familiarity with Node.js to make the most of this book. Table of Contents Cryptography for Developers Dealing with Binary and Random Data File and Password Hashing with Node.js Symmetric Encryption in Node.js Using Asymmetric and Hybrid Encryption in Node.js Digital Signatures with Node.js and Trust Introduction to Cryptography in the Browser Performing Common Cryptographic Operations in the Browser. Computer security. http://id.loc.gov/authorities/subjects/sh90001862 Cryptography. http://id.loc.gov/authorities/subjects/sh85034453 JavaScript (Computer program language) http://id.loc.gov/authorities/subjects/sh96004880 Computer Security https://id.nlm.nih.gov/mesh/D016494 Sécurité informatique. Cryptographie. JavaScript (Langage de programmation) Computer security fast Cryptography fast JavaScript (Computer program language) fast Print version: 9781801075336 FWS01 ZDB-4-EBA FWS_PDA_EBA https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=3148937 Volltext |
spellingShingle | Segala, Alessandro Essential cryptography for JavaScript developers : a practical guide to leveraging common cryptographic operations in Node.js and the browser / Table of Contents Cryptography for Developers Dealing with Binary and Random Data File and Password Hashing with Node.js Symmetric Encryption in Node.js Using Asymmetric and Hybrid Encryption in Node.js Digital Signatures with Node.js and Trust Introduction to Cryptography in the Browser Performing Common Cryptographic Operations in the Browser. Computer security. http://id.loc.gov/authorities/subjects/sh90001862 Cryptography. http://id.loc.gov/authorities/subjects/sh85034453 JavaScript (Computer program language) http://id.loc.gov/authorities/subjects/sh96004880 Computer Security https://id.nlm.nih.gov/mesh/D016494 Sécurité informatique. Cryptographie. JavaScript (Langage de programmation) Computer security fast Cryptography fast JavaScript (Computer program language) fast |
subject_GND | http://id.loc.gov/authorities/subjects/sh90001862 http://id.loc.gov/authorities/subjects/sh85034453 http://id.loc.gov/authorities/subjects/sh96004880 https://id.nlm.nih.gov/mesh/D016494 |
title | Essential cryptography for JavaScript developers : a practical guide to leveraging common cryptographic operations in Node.js and the browser / |
title_auth | Essential cryptography for JavaScript developers : a practical guide to leveraging common cryptographic operations in Node.js and the browser / |
title_exact_search | Essential cryptography for JavaScript developers : a practical guide to leveraging common cryptographic operations in Node.js and the browser / |
title_full | Essential cryptography for JavaScript developers : a practical guide to leveraging common cryptographic operations in Node.js and the browser / Alessandro Segala. |
title_fullStr | Essential cryptography for JavaScript developers : a practical guide to leveraging common cryptographic operations in Node.js and the browser / Alessandro Segala. |
title_full_unstemmed | Essential cryptography for JavaScript developers : a practical guide to leveraging common cryptographic operations in Node.js and the browser / Alessandro Segala. |
title_short | Essential cryptography for JavaScript developers : |
title_sort | essential cryptography for javascript developers a practical guide to leveraging common cryptographic operations in node js and the browser |
title_sub | a practical guide to leveraging common cryptographic operations in Node.js and the browser / |
topic | Computer security. http://id.loc.gov/authorities/subjects/sh90001862 Cryptography. http://id.loc.gov/authorities/subjects/sh85034453 JavaScript (Computer program language) http://id.loc.gov/authorities/subjects/sh96004880 Computer Security https://id.nlm.nih.gov/mesh/D016494 Sécurité informatique. Cryptographie. JavaScript (Langage de programmation) Computer security fast Cryptography fast JavaScript (Computer program language) fast |
topic_facet | Computer security. Cryptography. JavaScript (Computer program language) Computer Security Sécurité informatique. Cryptographie. JavaScript (Langage de programmation) Computer security Cryptography |
url | https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=3148937 |
work_keys_str_mv | AT segalaalessandro essentialcryptographyforjavascriptdevelopersapracticalguidetoleveragingcommoncryptographicoperationsinnodejsandthebrowser |