Join Amazon Prime and get unlimited Free One-Day Delivery. Already a member? Sign in.

 

or
Sign in to turn on 1-Click ordering.
 
   
More Buying Choices
22 used & new from £0.79

Have one to sell? Sell yours here
 
   
Java Cryptography (Java Series)
 
See larger image
 

Java Cryptography (Java Series) (Paperback)

by Jonathan Knudsen (Author)
4.0 out of 5 stars See all reviews (3 customer reviews)
RRP: £20.95
Price: £19.90 & this item Delivered FREE in the UK with Super Saver Delivery. See details and conditions
You Save: £1.05 (5%)
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
In stock.
Dispatched from and sold by Amazon.co.uk. Gift-wrap available.

Only 2 left in stock--order soon (more on the way).

Want guaranteed delivery by Thursday, July 16? Choose Express delivery at checkout. See Details
9 new from £18.42 13 used from £0.79

Frequently Bought Together

Customers buy this book with Beginning Cryptography in Java (Programmer to Programmer) by David Hook

Java Cryptography (Java Series) + Beginning Cryptography in Java (Programmer to Programmer)
Price For Both: £36.14

Show availability and shipping details


Customers Who Bought This Item Also Bought

Beginning Cryptography in Java (Programmer to Programmer)

Beginning Cryptography in Java (Programmer to Programmer)

by David Hook
£16.24
Java Security (Java Series)

Java Security (Java Series)

by Scott Oaks
Java Cryptography Extensions: Practical Guide for Programmers (The Practical Guides)

Java Cryptography Extensions: Practical Guide for Programmers (The Practical Guides)

by Jason Weiss
£17.10
Effective Java: Second Edition

Effective Java: Second Edition

by Joshua Bloch
5.0 out of 5 stars (4)  £21.59
UML Distilled: A Brief Guide to the Standard Object Modeling Language (Addison-Wesley Object Technology Series)

UML Distilled: A Brief Guide to the Standard Object Modeling Language (Addison-Wesley Object Technology Series)

by Martin Fowler
4.0 out of 5 stars (21)  £22.94
Explore similar items

Product details

  • Paperback: 362 pages
  • Publisher: O'Reilly Media, Inc. (1 May 1998)
  • Language English
  • ISBN-10: 1565924029
  • ISBN-13: 978-1565924024
  • Product Dimensions: 23.4 x 17.8 x 1.9 cm
  • Average Customer Review: 4.0 out of 5 stars See all reviews (3 customer reviews)
  • Amazon.co.uk Sales Rank: 350,123 in Books (See Bestsellers in Books)

    Popular in this category:

    #25 in  Books > Computing & Internet > Computer Science > Security > Cryptography
  • See Complete Table of Contents

Customers Viewing This Page May Be Interested in These Sponsored Links

  (What is this?)
Java Security By Certicom
   www.Certicom.com    Looking for FIPS 140-2 developer tools? Download an eval today. 
UML/JAVA Model&Generation
   www.modeliosoft.com    Powerful Model Driven tool-100! Complete-Code Model consistency 
Fake Tv Security Light
   www.Gizoo.co.uk    Projected T.v. light to fool burglars for £29.95 
  
 

Product Description

Product Description
Cryptography, the science of secret writing, is the biggest, baddest security tool in the application programmer's arsenal. Cryptography provides three services that are crucial in secure programming. These include a cryptographic cipher that protects the secrecy of your data; cryptographic certificates, which prove identity (authentication); and digital signatures, which ensure your data has not been damaged or tampered with. This book covers cryptographic programming in Java. Java 1.1 and Java 1.2 provide extensive support for cryptography with an elegant architecture, the Java Cryptography Architecture (JCA). Another set of classes, the Java Cryptography Extension (JCE), provides additional cryptographic functionality. This book covers the JCA and the JCE from top to bottom, describing the use of the cryptographic classes as well as their innards. The book is designed for moderately experienced Java programmers who want to learn how to build cryptography into their applications. No prior knowledge of cryptography is assumed. The book is peppered with useful examples, ranging from simple demonstrations in the first chapter to full-blown applications in later chapters. Topics include: The Java Cryptography Architecture (JCA) The Java Cryptography Extension (JCE) Cryptographic providers The Sun key management tools Message digests, digital signatures, and certificates (X509v3) Block and stream ciphers Implementations of the ElGamal signature and cipher algorithms A network talk application that encrypts all data sent over the network An email application that encrypts its messages Creating signed applets Covers JDK 1.2 and JCE 1.2.

About the Author
Jonathan Knudsen is an author at O'Reilly & Associates. His books include The Unofficial Guide to Lego Mindstorms Robots, Java 2D Graphics, and Java Cryptography. He is the Courseware Writer for LearningPatterns.com.

Suggested Tags from Similar Products

 (What's this?)
Be the first one to add a relevant tag (keyword that's strongly related to this product)
Check a corresponding box or enter your own tags in the field below
lib-java
programming
computers

Your tags: Add your first tag
 

What Do Customers Ultimately Buy After Viewing This Item?

Java Cryptography (Java Series)
68% buy the item featured on this page:
Java Cryptography (Java Series) 4.0 out of 5 stars (3)
£19.90
Beginning Cryptography in Java (Programmer to Programmer)
32% buy
Beginning Cryptography in Java (Programmer to Programmer)
£16.24

 

Customer Reviews

3 Reviews
5 star:    (0)
4 star:
 (3)
3 star:    (0)
2 star:    (0)
1 star:    (0)
 
 
 
 
 
Average Customer Review
4.0 out of 5 stars (3 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

 
1 of 1 people found the following review helpful:
4.0 out of 5 stars One of the best books on the subject, 22 Jan 2003
By Thomas Paul (Plainview, NY USA) - See all my reviews
(TOP 500 REVIEWER)    (REAL NAME)   
Are you concerned about someone outside your company intercepting a password between your applet and your server? Are you worried about someone inside your company using a packet sniffer to capture the credit card numbers of your customers? No? Well, perhaps you should be! As a first step towards closing your security holes you should pick up a copy of "Java Cryptography". This book is written for the experienced Java developer with no cryptography background who needs to build cryptography into their application. The book starts off with a brief description of secure systems and demonstrates a "Hello zoT1WY1NJA0=!" program. It then gives a fairly detailed description of cryptographic concepts and the Java Cryptography Architecture (JCA). Subsequent chapters discuss how to use the Java Cryptography Extension (JCE). Chapter 5 covers generating and managing symmetric and asymmetric keys with an explanation of the difference. Chapter 6 discusses authenticating users and messages. Signatures and certificates are covered. Chapter 7 covers encryption techniques using different types of ciphers. Chapter 8 covers signing applets. The last chapters include sample encrypted chat and e-mail programs. The end result is a book that provides excellent coverage of cryptography in Java. The only defect in the book is that it is three years old (Java 2 was in beta). Fortunately, the book was written recently enough to include the new utilities used in Java 2. Even though a new edition is desirable, "Java Cryptography" still stands alone as the best book available on this topic.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
1 of 1 people found the following review helpful:
4.0 out of 5 stars Great introduction to implementing cryptography in Java2, 9 Dec 2000
By A Customer
While a bit outdated with JCE 1.2.1 and Java2 v1.3.0 out, this is still the ultimate resource for learning to understand the Java Cryptography Architecture (JCA) and how to use the Java Cryptography Extension (JCE) v1.2 (and thus also the newer internationally exportable JCE v1.2.1).

If you have any interest at all in implementing cryptography in your Java programs this book is a great way to learn the basics. If you want to implement your own cryptographic provider for the JCE framework, this book is a must, as it includes a full working example of a provider for JCE v1.2 which is easily extendable to JCE v1.2.1.

Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
4.0 out of 5 stars Review of Java Cryptography, 10 Jul 2002
Java Cryptography is an excellent book for people with little expierence coding in Java, however it does presum that you know the basics. It explains the concepts of cryptography well and porvides excellent easy to understand examples. Most lines of code are also explained well. A real bargin.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)


Share your thoughts with other customers: Create your own review
 
 
 
Only search this product's reviews



Customer Discussions

 Beta (What's this?)
This product's forum (0 discussions)
  Discussion Replies Latest Post
  No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
  [Cancel]

   


Listmania!


Look for similar items by category


Feedback


Fun for Everyone

Christmas Gifts
Achieve over 15,000 RPM with our great range of Powerballs.

Shop the Powerball store

 

Beauty without the Beast

Olay Regenerist Daily 3 Point Treatment Cream
From au naturel to party glam, we have all the best names in cosmetics and skincare.

Discover Beauty at Amazon.co.uk

 

Up to 50% off Dental Care

Braun Oral-B Professional Care 6000 Rechargeable Toothbrush - Pack of 2
Put a sparkle in your smile with up to 50% off selected Oral-B and Philips rechargeable toothbrushes.

Up to 50% off power toothbrushes

 

Treat Someone

Amazon.co.uk Gift Certificates--available in any amount from £5 to £500 With an Amazon.co.uk Gift Certificate, you can get them what they want (even if you don't know what that is).

Learn more about Gift Certificates

 
Ad

Where's My Stuff?

Delivery and Returns

Need Help?

Your Recent History

  (What's this?)
You have no recently viewed items or searches.

After viewing product detail pages or search results, look here to find an easy way to navigate back to pages you are interested in.

Look to the right column to find helpful suggestions for your shopping session.

Continue Shopping: Top Sellers
The Girl Who Played with Fire
Breaking Dawn (Twilight Saga)
The Girl with the Dragon Tattoo
The Host
The Host by Stephenie Meyer

amazon.co.uk Amazon Home
International Sites:  United States  |  Germany  |  France  |  Japan  |  Canada  |  China
Business Programs: Sell on Amazon  |  Fulfilment by Amazon  |  Join Associates  |  Join Advantage
Customer Service  |  Help  |  View Basket  |  Your Account
About Amazon.co.uk  |  Careers at Amazon
Conditions of Use & Sale |  Privacy Notice  © 1996-2009, Amazon.com, Inc. and its affiliates