Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


6.3. Authentication and Cryptography




The java.security
package (and its subpackages) provides classes and interfaces for

authentication .
As described in Chapter 5, this piece of the
security architecture allows Java code to create and verify message
digests and digital signatures. These
technologies can ensure that any data (such as a Java class file) is
authentic: that it originates from the person who claims to have
originated it and has not been accidentally or maliciously modified
in transit.

The Java Cryptography Extension, or JCE,
consists of the javax.crypto package and its
subpackages. These packages define classes for encryption and
decryption of data. This is an important security-related feature for
many applications, but is not directly relevant to the basic problem
of preventing untrusted code from damaging the host system, so it is
not discussed in this chapter.


/ 1191