* Rename and reorganize post fetcher to fix autoloading, also let it use Faradays default connection so we get nice redirects * Add initializer to load libs at a central place * added lib dir to autoload_once paths to increase thread safety * Moved lib/exceptions.rb to lib/diaspora/ to conform namespacing
30 lines
978 B
Ruby
30 lines
978 B
Ruby
# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
# Add URL safe Base64 support
|
|
module Base64
|
|
module_function
|
|
# Returns the Base64-encoded version of +bin+.
|
|
# This method complies with ``Base 64 Encoding with URL and Filename Safe
|
|
# Alphabet'' in RFC 4648.
|
|
# The alphabet uses '-' instead of '+' and '_' instead of '/'.
|
|
def urlsafe_encode64(bin)
|
|
self.strict_encode64(bin).tr("+/", "-_")
|
|
end
|
|
|
|
# Returns the Base64-decoded version of +str+.
|
|
# This method complies with ``Base 64 Encoding with URL and Filename Safe
|
|
# Alphabet'' in RFC 4648.
|
|
# The alphabet uses '-' instead of '+' and '_' instead of '/'.
|
|
def urlsafe_decode64(str)
|
|
self.decode64(str.tr("-_", "+/"))
|
|
end
|
|
end
|
|
|
|
# Verify documents secured with Magic Signatures
|
|
module Salmon
|
|
require "salmon/slap"
|
|
require "salmon/encrypted_slap"
|
|
require "salmon/magic_sig_envelope"
|
|
end
|