Home
last modified time | relevance | path

Searched refs:decode64 (Results 1 – 25 of 224) sorted by relevance

123456789

/dports/lang/ruby26/ruby-2.6.9/test/base64/
H A Dtest_base64.rb9 assert_equal('Send reinforcements', Base64.decode64("U2VuZCByZWluZm9yY2VtZW50cw==\n"))
15 Base64.decode64("Tm93IGlzIHRoZSB0aW1lIGZvciBhbGwgZ29vZCBjb2RlcnMKdG8gbGVhcm4g\nUnVieQ==\n"))
21 …Base64.decode64("VGhpcyBpcyBsaW5lIG9uZQpUaGlzIGlzIGxpbmUgdHdvClRoaXMgaXMgbGluZSB0aHJlZQpBbmQgc28gb…
36 assert_equal("", Base64.decode64(""))
37 assert_equal("\0", Base64.decode64("AA==\n"))
38 assert_equal("\0\0", Base64.decode64("AAA=\n"))
39 assert_equal("\0\0\0", Base64.decode64("AAAA\n"))
40 assert_equal("\377", Base64.decode64("/w==\n"))
41 assert_equal("\377\377", Base64.decode64("//8=\n"))
42 assert_equal("\377\377\377", Base64.decode64("////\n"))
[all …]
/dports/lang/elixir-devel/elixir-1.13.1/lib/elixir/test/elixir/
H A Dbase_test.exs119 assert {:ok, ""} == decode64("")
123 assert "" == decode64!("")
126 test "decode64/1 with two pads" do
130 test "decode64!/1 with two pads" do
134 test "decode64/1 with one pad" do
138 test "decode64!/1 with one pad" do
142 test "decode64/1 with no pad" do
146 test "decode64!/1 with no pad" do
151 assert :error == decode64("Zm9)")
156 decode64!("Zm9)")
[all …]
/dports/lang/elixir/elixir-1.12.3/lib/elixir/test/elixir/
H A Dbase_test.exs119 assert {:ok, ""} == decode64("")
123 assert "" == decode64!("")
126 test "decode64/1 with two pads" do
130 test "decode64!/1 with two pads" do
134 test "decode64/1 with one pad" do
138 test "decode64!/1 with one pad" do
142 test "decode64/1 with no pad" do
146 test "decode64!/1 with no pad" do
151 assert :error == decode64("Zm9)")
156 decode64!("Zm9)")
[all …]
/dports/sysutils/vector/vector-0.10.0/cargo-crates/sasl2-sys-0.1.12/sasl2/java/CyrusSasl/
H A DSaslUtils.java119 decode64( byte buf[] ) in decode64() method in SaslUtils
154 output_index += decode64(ret, output_index, t[0], t[1], t[2], t[3]); in decode64()
160 decode64(ret, output_index, t[0], t[1], t[2], t[3]); in decode64()
174 public static byte[] decode64( String msg ) in decode64() method in SaslUtils
176 return decode64( msg.getBytes()); in decode64()
181 decode64( byte ret[], int ret_off, byte a, byte b, byte c, byte d ) in decode64() method in SaslUtils
/dports/science/jmol/jmol-14.32.7/src/javajs/util/
H A DBase64.java30 private static int[] decode64 = new int[] { field in Base64
98 nBytes += ((ch = chars64[i] & 0x7F) == 'A' || decode64[ch] > 0 ? 3 : 0); in decodeBase64()
103 if (decode64[ch = chars64[i] & 0x7F] > 0 || ch == 'A' || ch == '=') { in decodeBase64()
104 b |= decode64[ch] << offset; in decodeBase64()
/dports/shells/ohmyzsh/ohmyzsh-6babcbd8841335a3c25ec960ff57ab9a139c9073/plugins/encode64/
H A DREADME.md16 | `decode64` | `d64` | Decodes given data from base64 |
45 $ decode64 b2gtbXktenNo
54 $ echo "b2gtbXktenNoCg==" | decode64
H A Dencode64.plugin.zsh9 decode64() { function
17 alias d64=decode64
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/
H A Dinsecure_key_fingerprint.rb23 OpenSSL::Digest::MD5.hexdigest(Base64.decode64(@key)).scan(/../).join(':')
27 Digest::SHA256.base64digest(Base64.decode64(@key)).scan(/../).join('').delete("=")
/dports/security/openvpn-auth-script/openvpn-auth-script-1.0.0.3/examples/
H A Dexternal_script22 password = Base64.decode64(password)
23 challenge_response = Base64.decode64(challenge_response)
/dports/devel/gitlab-shell/gitlab-shell-65b8ec55bebd0aea64ac52b9878bafcc2ad992d3/vendor/gitlab.com/gitlab-org/gitaly/v14/ruby/lib/praefect/
H A Dtransaction.rb17 praefect = JSON.parse(Base64.decode64(praefect_metadata))
18 transaction = JSON.parse(Base64.decode64(transaction_metadata))
/dports/games/supertuxkart/SuperTuxKart-1.2-src/src/network/
H A Dcrypto_openssl.hpp82 static std::vector<uint8_t> decode64(std::string input);
90 auto c = std::unique_ptr<Crypto>(new Crypto(decode64(m_client_key), in getClientCrypto()
91 decode64(m_client_iv))); in getClientCrypto()
H A Dcrypto_nettle.hpp90 static std::vector<uint8_t> decode64(std::string input);
98 auto c = std::unique_ptr<Crypto>(new Crypto(decode64(m_client_key), in getClientCrypto()
99 decode64(m_client_iv))); in getClientCrypto()
/dports/net-im/gloox/gloox-1.0.24/src/tests/base64/
H A Dbase64_test.cpp34 if( sample != Base64::decode64( b ) ) in main()
46 if( sample != Base64::decode64( b ) ) in main()
/dports/graphics/lazpaint/lazpaint-7.1.6/lazpaint/
H A Dubrushtype.pas163 decode64: TBase64DecodingStream;
177 decode64 := TBase64DecodingStream.Create(string64);
179 temp.CopyFrom(decode64, decode64.Size);
183 decode64.Free;
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/qa/qa/service/
H A Dkubernetes_cluster.rb26 @ca_certificate = Base64.decode64(credentials.dig('data', 'ca.crt'))
27 @token = Base64.decode64(credentials.dig('data', 'token'))
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/services/clusters/gcp/
H A Dfinalize_creation_service.rb45 ca_cert: Base64.decode64(gke_cluster.master_auth.cluster_ca_certificate),
76 Base64.decode64(gke_cluster.master_auth.cluster_ca_certificate)
/dports/security/libxcrypt/libxcrypt-4.4.27/lib/
H A Dalg-yescrypt.h346 #define decode64 yescrypt_decode64 macro
349 extern const uint8_t *decode64(uint8_t *dst, size_t *dstlen,
/dports/devel/stack/stack-2.7.3/_cabal_deps/project-template-0.2.1.0/Text/
H A DProjectTemplate.hs98 | isBinary = binaryLoop .| decode64
167 decode64 :: Monad m => ConduitM ByteString ByteString m ()
168 decode64 = codeWith 4 B64.decodeLenient function
/dports/www/hs-yesod-bin/yesod-bin-1.6.1/_cabal_deps/project-template-0.2.1.0/Text/
H A DProjectTemplate.hs98 | isBinary = binaryLoop .| decode64
167 decode64 :: Monad m => ConduitM ByteString ByteString m ()
168 decode64 = codeWith 4 B64.decodeLenient function
/dports/lang/ruby26/ruby-2.6.9/spec/ruby/library/base64/
H A Ddecode64_spec.rb7 Base64.decode64("U2VuZCByZWluZm9yY2VtZW50cw==\n").should == "Send reinforcements"
/dports/net-im/gloox/gloox-1.0.24/src/
H A Dbase64.h45 GLOOX_API const std::string decode64( const std::string& input );
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/database/
H A Dsha256_attribute.rb24 Base64.decode64(value)
/dports/www/elixir-maru/maru-0.12.4/lib/maru/types/
H A Dbase64.ex10 input |> Base.decode64!
/dports/security/whatweb/WhatWeb-f467aa2/plugins/
H A Dphpfox.rb43 m << { :version=>Base64.decode64(version).to_s }
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/gitlab.com/gitlab-org/gitaly/v14/ruby/lib/praefect/
H A Dtransaction.rb12 transaction = JSON.parse(Base64.decode64(transaction_metadata))

123456789