# File lib/rfuzz/random.rb, line 65 65: def base64(count,length=100) 66: list = [] 67: count.times { 68: list << Base64.encode64(@rnd.data(num(length))) 69: } 70: return list 71: end