Loading [MathJax]/extensions/tex2jax.js
ROOT
6.08/07
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
+
Namespaces
Namespace List
+
Namespace Members
+
All
2
3
<
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
<
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
2
3
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
u
v
x
+
Enumerations
a
d
e
f
g
h
m
p
t
v
w
y
+
Enumerator
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
u
v
w
+
All Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
x
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
w
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Properties
f
+
Related Functions
:
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Files
File List
+
File Members
+
All
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerations
c
e
f
i
l
m
p
r
u
x
+
Enumerator
a
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
v
w
x
y
z
+
Macros
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
net
auth
inc
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
#ifndef ROOT_Rtypes
24
#include "
Rtypes.h
"
25
#endif
26
27
// Number of security levels and masks
28
const
Int_t
kMAXSEC
= 6;
29
const
Int_t
kMAXSECBUF
= 4096;
30
const
Int_t
kAUTH_REUSE_MSK
= 0x1;
31
const
Int_t
kAUTH_CRYPT_MSK
= 0x2;
32
const
Int_t
kAUTH_SSALT_MSK
= 0x4;
33
const
Int_t
kAUTH_RSATY_MSK
= 0x8;
34
const
Int_t
kMAXRSATRIES
= 100;
35
const
Int_t
kPRIMELENGTH
= 20;
36
const
Int_t
kPRIMEEXP
= 40;
37
38
#endif
kAUTH_SSALT_MSK
const Int_t kAUTH_SSALT_MSK
Definition:
AuthConst.h:32
Rtypes.h
kMAXSEC
const Int_t kMAXSEC
Definition:
AuthConst.h:28
Int_t
int Int_t
Definition:
RtypesCore.h:41
kAUTH_RSATY_MSK
const Int_t kAUTH_RSATY_MSK
Definition:
AuthConst.h:33
kMAXRSATRIES
const Int_t kMAXRSATRIES
Definition:
AuthConst.h:34
kPRIMEEXP
const Int_t kPRIMEEXP
Definition:
AuthConst.h:36
kAUTH_REUSE_MSK
const Int_t kAUTH_REUSE_MSK
Definition:
AuthConst.h:30
kMAXSECBUF
const Int_t kMAXSECBUF
Definition:
AuthConst.h:29
kAUTH_CRYPT_MSK
const Int_t kAUTH_CRYPT_MSK
Definition:
AuthConst.h:31
kPRIMELENGTH
const Int_t kPRIMELENGTH
Definition:
AuthConst.h:35