This file is indexed.

/usr/share/opensc/oberthur.profile is in opensc 0.17.0-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#
# PKCS15 r/w profile for Oberthur cards
#
cardinfo {
	label	= "SCM";
	manufacturer	= "Oberthur/OpenSC";
		
	max-pin-length	= 64;
	min-pin-length	= 4;
	pin-encoding	= ascii-numeric;
	pin-pad-char	= 0xFF;
}

pkcs15 {
    # Have a lastUpdate field in the EF(TokenInfo)?
    do-last-update      = no;
}

# Define reasonable limits for PINs and PUK
# Note that we do not set a file path or reference
# here; that is done dynamically.
PIN user-pin {
	attempts	= 5;
	max-length	= 64;
	min-length	= 4;
	flags	= case-sensitive, local, initialized, needs-padding;
	reference = 0x81
}
PIN user-puk {
	attempts	= 5;
	max-length	= 64;
	min-length	= 4;
	flags	= case-sensitive, local, unblock-disabled, initialized, needs-padding, unblockingPin;
	reference = 0x84
}
PIN so-pin {
	auth-id = FF;
	attempts	= 3;
	max-length	= 64;
	min-length	= 4;
	flags	= case-sensitive, unblock-disabled, initialized, needs-padding, soPin;
	reference = 4
}

# CHV5 used for Oberthur's specifique access condition "PIN or SOPIN"
# Any value for this pin can given, when the OpenSC tools are asking for.

# Additional filesystem info.
# This is added to the file system info specified in the
# main profile.
filesystem {
	DF MF {
		ACL = *=CHV4;

		DF OberthurAWP-AppDF {
			ACL = *=NONE;
			ACL = CREATE=CHV4, CRYPTO=NEVER, PIN-DEFINE=CHV4, PIN-RESET=CHV4;
			file-id 	= 5011;
			size = 40;
		
			DF private-DF {
				ACL = *=NEVER;
				ACL = CREATE=CHV1, CRYPTO=CHV1, FILES=NONE, DELETE=NONE;
				file-id		= 9002;
				size		= 40;
			
				# Private RSA keys
				EF OberthurAWP-private-key-info   {
					ACL	 = WRITE=CHV1, UPDATE=CHV1, READ=NONE;
				}
				EF template-private-key {
					file-id		= 3000;
					type	= internal-ef;
					structure = 0xA3;
					# READ acl used instead of DECRYPT/SIGN
					ACL	 = UPDATE=CHV1, READ=CHV1;
				}
				
				# Private DES keys
				EF OberthurAWP-private-des-info   {
					ACL	 = WRITE=CHV1, UPDATE=CHV1, READ=NONE;
				}
				EF template-private-des {
					file-id	 = 4000;
					type	= internal-ef;
					size = 24;  # 192 bits
					# READ acl used insted of DECRYPT/ENCRYPT/CHECKSUM
					ACL = UPDATE=CHV1, READ=CHV1;
				}
			
				# Private data
				EF OberthurAWP-privdata-info   {
					ACL = WRITE=CHV1, UPDATE=CHV1, READ=NONE;
				}
				EF  template-privdata {
					file-id	 = 6000;
					ACL = WRITE=CHV1, UPDATE=CHV1, READ=CHV1;
				}
			}
	
			DF public-DF {
				ACL = CREATE=NONE, CRYPTO=NONE, FILES=NONE, DELETE=NONE;
				file-id		= 9001;
				size		= 80;
			
				# Certificate
				EF OberthurAWP-certificate-info  {
					ACL = WRITE=NONE, UPDATE=NONE, READ=NONE, ERASE=NONE;
				}
				EF template-certificate {
					file-id		= 2000;
					ACL = WRITE=NONE, UPDATE=NONE, READ=NONE, ERASE=NONE;
				}
				
				#Public Key
				EF OberthurAWP-public-key-info {
					ACL = WRITE=NONE, UPDATE=NONE, READ=NONE, ERASE=NONE;
				}
				EF template-public-key {
					file-id	 = 1000;
					type	= internal-ef;
					structure = 0xA1;
					ACL	 = *=NONE;
				}
			
				# Public DES keys
				EF OberthurAWP-public-des-info   {
					ACL = WRITE=NONE, UPDATE=NONE, READ=NONE, ERASE=NONE;
				}
				EF template-public-des {
					file-id	 = 7000;
					type	= internal-ef;
					size = 24;  # 192 bits
					ACL = *=NONE;
				 }
			
				# Public data
				EF OberthurAWP-data-info   {
					ACL = WRITE=NONE, UPDATE=NONE, READ=NONE, ERASE=NONE;
				}
				EF  template-data {
					file-id	 = 5000;
					ACL = *=NONE;
				}
			}

			EF OberthurAWP-token-info {
				file-id	= 1000;
				size	= 36;
				ACL	= WRITE=CHV4, UPDATE=CHV4, READ=NONE, ERASE=NEVER;
			}
			
			EF OberthurAWP-puk-file {
				file-id	= 2000;
				size	= 16;
				ACL	= WRITE=NEVER, UPDATE=CHV4, READ=NONE, ERASE=NEVER;
			}
			
			EF OberthurAWP-container-list {
				file-id 	= 3000;
				structure	= linear-variable;
				size 		= 20;
				record-length 	= 141; 
				ACL = WRITE=NONE, UPDATE=NONE, READ=NONE, ERASE=NONE;
			}
			
			EF OberthurAWP-public-list {
				file-id	= 4000;
				size	= 250;
				ACL	= *=NONE, ERASE=NEVER;
			}
			
			EF OberthurAWP-private-list {
				file-id	= 5000;
				size	= 125;
				ACL	= WRITE=CHV1, UPDATE=CHV1, READ=NONE, ERASE=NEVER;
			}
		}
		
		DF PKCS15-AppDF { 
			ACL	 = *=CHV4, FILES=NONE;
			size = 20;

			EF PKCS15-ODF {
				size	= 512;
			}

			EF PKCS15-AODF {
				size	= 512;
			}

			EF PKCS15-CDF {
				size	= 3072;
			}

			EF PKCS15-PrKDF {
				size	= 1024;
			}

			EF PKCS15-PuKDF {
				size	= 1024;
			}

			EF PKCS15-DODF {
				size	= 512;
			}
		}
	}
}