From a065e04d529da1d847b5062a12c46d916408bf32 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 21:46:22 -0500 Subject: update based on https://github.com/mdn/yari/issues/2028 --- .../projects/nss/esempi_codice_nss/index.html | 28 --- files/it/mozilla/projects/nss/index.html | 198 --------------------- 2 files changed, 226 deletions(-) delete mode 100644 files/it/mozilla/projects/nss/esempi_codice_nss/index.html delete mode 100644 files/it/mozilla/projects/nss/index.html (limited to 'files/it/mozilla/projects/nss') diff --git a/files/it/mozilla/projects/nss/esempi_codice_nss/index.html b/files/it/mozilla/projects/nss/esempi_codice_nss/index.html deleted file mode 100644 index e98ceaa015..0000000000 --- a/files/it/mozilla/projects/nss/esempi_codice_nss/index.html +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: Esempi di Codice NSS -slug: Mozilla/Projects/NSS/Esempi_Codice_NSS -tags: - - Esempi NSS -translation_of: Mozilla/Projects/NSS/NSS_Sample_Code ---- -

Esempi di Codice NSS

- -

La collezione di esempi di codice che segue, mostra come NSS possa essere usato per le operazioni crittografiche, la gestione di certificati, SSL, ecc... Mostra inoltre alcune buone norme nell'applicazione della crittografia.

- -

 

- -
    -
  1. Esempio di Codice 1: Generazione di Chiavi e Trasporto tra server
  2. -
  3. Esempio di Codice 2: Crittografia Simmetrica
  4. -
  5. Esempio di Codice 3: Hashing, MAC
  6. -
  7. Esempio di Codice 4: Crittografia PKI
  8. -
  9. Esempio di Codice 5: Crittografia PKI con chiave pubblica e privata raw in formato DER
  10. -
  11. Sample Code 6: Chiavi Simmetriche Permanenti in database NSS
  12. -
- -


- Questi esempi dono molto vecchi e necessitano di essere sostituiti. Vedi https://bugzilla.mozilla.org/show_bug.cgi?id=490238

- -

C'è una git repo temporanea con il lavoro in corso

- -
git clone git://fedorapeople.org/~emaldonado/samples.git
diff --git a/files/it/mozilla/projects/nss/index.html b/files/it/mozilla/projects/nss/index.html deleted file mode 100644 index 718314f916..0000000000 --- a/files/it/mozilla/projects/nss/index.html +++ /dev/null @@ -1,198 +0,0 @@ ---- -title: Network Security Services -slug: Mozilla/Projects/NSS -tags: - - JSS - - NSS - - NeedsMigration - - NeedsTranslation - - TopicStub -translation_of: Mozilla/Projects/NSS ---- -

Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards.

-

For detailed information on standards supported, see Overview of NSS. For a list of frequently asked questions, see the FAQ.

-

NSS is available under the Mozilla Public License. For information on downloading NSS releases as tar files, see Download PKI Source.

-

If you're a developer and would like to contribute to NSS, you might want to read the documents highlevel overview of internal details of NSS and getting started with NSS.

- - - - - - - -
-

Documentation

-

Background Information

-
-
- Overview of NSS
-
- Provides a brief summary of NSS and its capabilities.
-
- NSS FAQ
-
- Answers basic questions about NSS.
-
- Introduction to Public-Key Cryptography
-
- Explains the basic concepts of public-key cryptography that underlie NSS.
-
- Introduction to SSL
-
- Introduces the SSL protocol, including information about cryptographic ciphers supported by SSL and the steps involved in the SSL handshake.
-
-

Getting Started

-
-
- NSS Releases
-
- This page contains information about the current and past releases of NSS.
-
- Get the source code and Build it
-
- Instructions on how to build NSS on the different supported platforms.
-
- Get Mozilla Source Code Using Mercurial
-
- Information about with working with Mercurial.
-
- Get Mozilla Source Code Using CVS (deprecated)
-
- Old deprecated CVS documentation.
-
-

NSS APIs

-
-
- Introduction to Network Security Services
-
- Provides an overview of the NSS libraries and what you need to know to use them.
-
- NSS Public Functions
-
- Summarizes the APIs exported by the NSS shared libraries.
-
- NSS Reference
-
- API used to invoke SSL operations.
-
- NSS API Guidelines
-
- Explains how the libraries and code are organized, and guidelines for developing code (naming conventions, error handling, thread safety, etc.)
-
- NSS Technical Notes
-
- Links to NSS technical notes, which provide latest information about new NSS features and supplementary documentation for advanced topics in programming with NSS.
-
-

Tools, testing, and other technical details

-
-
- Build Instructions for NSS
-
- Describe how to check out and build NSS releases.
-
-
-
- NSS Developer Tutorial
-
- How to make changes in NSS. Coding style, maintaining ABI compatibility.
-
-
-
- NSS Tools
-
- Tools for developing, debugging, and managing applications that use NSS.
-
- Sample Code
-
- Demonstrates how NSS can be used for cryptographic operations, certificate handling, SSL, etc.
-
- NSS 3.2 Test Suite
-
- Archived version. Describes how to run the standard NSS tests.
-
- NSS Performance Reports
-
- Archived version. Links to performance reports for NSS 3.2 and later releases.
-
- Encryption Technologies Available in NSS 3.11
-
- Archived version. Lists the cryptographic algorithms used by NSS 3.11.
-
- NSS 3.1 Loadable Root Certificates
-
- Archived version. Describes the scheme for loading root CA certificates.
-
- cert7.db
-
- Archived version. General format of the cert7.db database.
-
-

PKCS #11 information

- -
-
-

CA certificates pre-loaded into NSS

- -
-
-

NSS is built on top of Netscape Portable Runtime (NSPR)

-
-
- Netscape Portable Runtime
-
- NSPR project page.
-
- NSPR Reference
-
- NSPR API documentation.
-
-

Additional Information

- -

Testing

- -

Planning

-

Information on NSS planning can be found at wiki.mozilla.org, including:

- -
-

Community

-
    -
  • View Mozilla Security forums...
  • -
-

{{ DiscussionList("dev-security", "mozilla.dev.security") }}

-
    -
  • View Mozilla Cryptography forums...
  • -
-

{{ DiscussionList("dev-tech-crypto", "mozilla.dev.tech.crypto") }}

- - -
-

 

-- cgit v1.2.3-54-g00ecf