Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
AuthConst.h
Go to the documentation of this file.
1// @(#)root/auth:$Id$
2// Author: Gerardo Ganis 3/12/2003
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_AuthConst
13#define ROOT_AuthConst
14
15//////////////////////////////////////////////////////////////////////////
16// //
17// AuthConst //
18// //
19// Const used in authentication business //
20// //
21//////////////////////////////////////////////////////////////////////////
22
23#include "RtypesCore.h"
24
25namespace ROOT::Deprecated {
26
27// Number of security levels and masks
28const Int_t kMAXSEC = 6;
29const Int_t kMAXSECBUF = 4096;
34const Int_t kMAXRSATRIES = 100;
36const Int_t kPRIMEEXP = 40;
37
38} // namespace ROOT::Deprecated
39
40const Int_t kMAXSEC R__DEPRECATED(6, 42, "the RootAuth library is deprecated") = ROOT::Deprecated::kMAXSEC;
41const Int_t kMAXSECBUF R__DEPRECATED(6, 42, "the RootAuth library is deprecated") = ROOT::Deprecated::kMAXSECBUF;
42const Int_t kAUTH_REUSE_MSK R__DEPRECATED(6, 42, "the RootAuth library is deprecated") =
44const Int_t kAUTH_CRYPT_MSK R__DEPRECATED(6, 42, "the RootAuth library is deprecated") =
46const Int_t kAUTH_SSALT_MSK R__DEPRECATED(6, 42, "the RootAuth library is deprecated") =
48const Int_t kAUTH_RSATY_MSK R__DEPRECATED(6, 42, "the RootAuth library is deprecated") =
50const Int_t kMAXRSATRIES R__DEPRECATED(6, 42, "the RootAuth library is deprecated") = ROOT::Deprecated::kMAXRSATRIES;
51const Int_t kPRIMELENGTH R__DEPRECATED(6, 42, "the RootAuth library is deprecated") = ROOT::Deprecated::kPRIMELENGTH;
52const Int_t kPRIMEEXP R__DEPRECATED(6, 42, "the RootAuth library is deprecated") = ROOT::Deprecated::kPRIMEEXP;
53
54#endif
#define R__DEPRECATED(MAJOR, MINOR, REASON)
Definition RConfig.hxx:510
Basic types used by ROOT and required by TInterpreter.
int Int_t
Signed integer 4 bytes (int)
Definition RtypesCore.h:59
const Int_t kMAXRSATRIES
Definition AuthConst.h:34
const Int_t kMAXSECBUF
Definition AuthConst.h:29
const Int_t kPRIMEEXP
Definition AuthConst.h:36
const Int_t kPRIMELENGTH
Definition AuthConst.h:35
const Int_t kAUTH_REUSE_MSK
Definition AuthConst.h:30
const Int_t kAUTH_CRYPT_MSK
Definition AuthConst.h:31
const Int_t kMAXSEC
Definition AuthConst.h:28
const Int_t kAUTH_SSALT_MSK
Definition AuthConst.h:32
const Int_t kAUTH_RSATY_MSK
Definition AuthConst.h:33