Modified Files: alt.c cache.c errors.c file.c manifest.mn ntgetpin.c pin.c
                pk11.c std.c svrcore.h user.c
This commit is contained in:
wtchang%redhat.com 2005-03-08 18:52:50 +00:00
Родитель 1e9a045fd8
Коммит 81491e932a
11 изменённых файлов: 48 добавлений и 43 удалений

Просмотреть файл

@ -1,8 +1,4 @@
/*
* alt.c - SVRCORE module for reading a PIN from one of two alternate
* sources.
*
* ***** BEGIN LICENSE BLOCK *****
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
@ -38,6 +34,11 @@
*
* ***** END LICENSE BLOCK ***** */
/*
* alt.c - SVRCORE module for reading a PIN from one of two alternate
* sources.
*/
#include <stdio.h>
#include <string.h>
#include <svrcore.h>

Просмотреть файл

@ -1,7 +1,4 @@
/*
* cache.c - SVRCORE module for caching PIN values
*
* ***** BEGIN LICENSE BLOCK *****
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
@ -37,6 +34,10 @@
*
* ***** END LICENSE BLOCK ***** */
/*
* cache.c - SVRCORE module for caching PIN values
*/
#include <string.h>
#include <svrcore.h>

Просмотреть файл

@ -1,7 +1,4 @@
/*
* errors.c - SVRCORE Error strings
*
* ***** BEGIN LICENSE BLOCK *****
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
@ -37,6 +34,10 @@
*
* ***** END LICENSE BLOCK ***** */
/*
* errors.c - SVRCORE Error strings
*/
#include <svrcore.h>
const char * const SVRCORE_Errors[] = {

Просмотреть файл

@ -1,7 +1,4 @@
/*
* file.c - SVRCORE module for reading PIN from a file
*
* ***** BEGIN LICENSE BLOCK *****
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
@ -37,6 +34,10 @@
*
* ***** END LICENSE BLOCK ***** */
/*
* file.c - SVRCORE module for reading PIN from a file
*/
#include <stdio.h>
#include <string.h>
#include <svrcore.h>

Просмотреть файл

@ -15,7 +15,7 @@
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1996
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
@ -34,12 +34,11 @@
*
* ***** END LICENSE BLOCK ***** */
/******************************************************
/***********************************************************
*
* ntgetpin.c - Prompts for the key
* database passphrase.
* ntgetpin.c - Prompts for the key database passphrase.
*
******************************************************/
***********************************************************/
#if defined( WIN32 )

Просмотреть файл

@ -1,7 +1,4 @@
/*
* pin.c - SVRCORE module implementing PK11 pin callback support
*
* ***** BEGIN LICENSE BLOCK *****
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
@ -37,6 +34,10 @@
*
* ***** END LICENSE BLOCK ***** */
/*
* pin.c - SVRCORE module implementing PK11 pin callback support
*/
#include <svrcore.h>
#include <string.h>

Просмотреть файл

@ -1,7 +1,4 @@
/*
* pk11.c - SVRCORE module for securely storing PIN using PK11
*
* ***** BEGIN LICENSE BLOCK *****
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
@ -37,6 +34,10 @@
*
* ***** END LICENSE BLOCK ***** */
/*
* pk11.c - SVRCORE module for securely storing PIN using PK11
*/
#include <svrcore.h>
#include <string.h>

Просмотреть файл

@ -1,7 +1,4 @@
/*
* std.c - StandardSVRCORE module for reading a PIN
*
* ***** BEGIN LICENSE BLOCK *****
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
@ -37,6 +34,10 @@
*
* ***** END LICENSE BLOCK ***** */
/*
* std.c - StandardSVRCORE module for reading a PIN
*/
#include <stdio.h>
#include <string.h>
#include <svrcore.h>

Просмотреть файл

@ -1,7 +1,4 @@
/*
* Interface to policy configuration for export-control modules
*
* ***** BEGIN LICENSE BLOCK *****
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
@ -36,6 +33,7 @@
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#ifndef __SVRCORE_H_
#define __SVRCORE_H_

Просмотреть файл

@ -1,7 +1,4 @@
/*
* tty.c - SVRCORE module for reading PIN from the terminal
*
* ***** BEGIN LICENSE BLOCK *****
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
@ -37,6 +34,10 @@
*
* ***** END LICENSE BLOCK ***** */
/*
* user.c - SVRCORE module for reading PIN from the terminal
*/
#include <stdio.h>
#include <string.h>
#include <svrcore.h>