Overview
| Comment: | Added working certificate support |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
3244026fd617fe4f6763765ed5ff9eea |
| User & Date: | rkeene on 2014-11-17 20:37:58.179 |
| Other Links: | manifest | tags |
Context
|
2014-11-17
| ||
| 20:50 | Updated to trim trailing newlines check-in: 3242c8d4d5 user: rkeene tags: trunk | |
| 20:37 | Added working certificate support check-in: 3244026fd6 user: rkeene tags: trunk | |
| 20:37 | Updated to include entire error stack on error for --tcl mode in AppFSd check-in: 4b2e0bf187 user: rkeene tags: trunk | |
Changes
Modified .fossil-settings/ignore-glob
from [efc67b31c0]
to [09c745f86a].
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 | + + | appfsd appfsd.o appfsd.tcl.h sha1.o sha1.tcl.h pki.tcl.h pki.tcl.new pki.tcl CA |
Added appfs-cert version [536bd4fe36].
Modified appfsd.tcl
from [2e09ba053f]
to [af3233ef21].
| ︙ | |||
20 21 22 23 24 25 26 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | - + |
}
}
namespace eval ::appfs {
variable cachedir "/tmp/appfs-cache"
variable ttl 3600
variable nttl 60
|
| ︙ | |||
93 94 95 96 97 98 99 | 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 | - + + + + + + + + + + + + + + + + + + + + + |
if {![regexp {^[0-9a-f]*$} $value]} {
return false
}
return true
}
|
| ︙ | |||
148 149 150 151 152 153 154 | 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 210 211 212 213 214 215 | - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + |
}
proc init {} {
if {[info exists ::appfs::init_called]} {
return
}
|
| ︙ | |||
239 240 241 242 243 244 245 | 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 | - + |
set indexhashcert [lindex $indexhash_data 2]
set indexhashsig [lindex $indexhash_data 3]
if {![_isHash $indexhash]} {
return -code error "Invalid hash: $indexhash"
}
|
| ︙ |