• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/

Lines Matching refs:StringSource

52 	StringSource(output, true, new HexDecoder(new ChannelSwitch(comparison, "1")));
68 StringSource(key, true, new HexDecoder(new StringSink(decodedKey)));
69 StringSource(seed, true, new HexDecoder(new StringSink(decodedSeed)));
70 StringSource(deterministicTimeVector, true, new HexDecoder(new StringSink(decodedDeterministicTimeVector)));
84 StringSource(plaintext, true, new HexDecoder(new StreamTransformationFilter(encryption, new ChannelSwitch(comparison, "0"), StreamTransformationFilter::NO_PADDING)));
85 StringSource(ciphertext, true, new HexDecoder(new ChannelSwitch(comparison, "1")));
87 StringSource(ciphertext, true, new HexDecoder(new StreamTransformationFilter(decryption, new ChannelSwitch(comparison, "0"), StreamTransformationFilter::NO_PADDING)));
88 StringSource(plaintext, true, new HexDecoder(new ChannelSwitch(comparison, "1")));
107 StringSource(key, true, new HexDecoder(new StringSink(decodedKey)));
113 StringSource(hexIV, true, new HexDecoder(new ArraySink(iv, iv.size())));
130 StringSource(digest, true, new HexDecoder(new ChannelSwitch(comparison, "1")));
131 StringSource(message, true, new HashFilter(hash, new ChannelSwitch(comparison, "0")));
148 StringSource(key, true, new HexDecoder(new StringSink(decodedKey)));
163 typename SCHEME::Signer signer(StringSource(key, true, new HexDecoder).Ref());
168 StringSource(message, true, new SignerFilter(rng, signer, new ChannelSwitch(comparison, "0")));
169 StringSource(signature, true, new HexDecoder(new ChannelSwitch(comparison, "1")));
175 StringSource(signature, true, new HexDecoder(new Redirector(verifierFilter, Redirector::DATA_ONLY)));
176 StringSource(message, true, new Redirector(verifierFilter));
191 StringSource(
202 StringSource(
229 StringSource(
247 typename SCHEME::Signer signer(StringSource(key, true, new HexDecoder).Ref());