Miguel Pragier
Results
2
comments of
Miguel Pragier
Your concerns make sense, and the quoted approach is technically correct. It's usual for (several, me inclusive) go programmers to ignore some errors ( It's not a recommendation! ), even...
I know it's too late, but for other's reference: I solved here passing the correct/exact file size in bytes: ```golang f,er4:=os.Open(targetDoc) fmt.Println(er4) fl,_:=f.Stat() r, er2 := rscpdf.NewReaderEncrypted(f, fl.Size(), func() string...