Home
last modified time | relevance | path

Searched refs:CBOR (Results 1 – 25 of 764) sorted by relevance

12345678910>>...31

/dports/devel/hs-spago/spago-0.20.3/_cabal_deps/serialise-0.2.3.0/src/Codec/
H A DSerialise.hs29 , CBOR.Read.DeserialiseFailure(..)
35 , CBOR.Read.IDecode(..)
59 import qualified Codec.CBOR.Read as CBOR.Read
60 import qualified Codec.CBOR.Write as CBOR.Write
79 serialiseIncremental = CBOR.Write.toBuilder . encode
92 deserialiseIncremental = CBOR.Read.deserialiseIncremental decode
109 serialise = CBOR.Write.toLazyByteString . encode
123 supplyAllInput _bs (CBOR.Read.Done _ _ x) = return x
124 supplyAllInput bs (CBOR.Read.Partial k) =
128 supplyAllInput _ (CBOR.Read.Fail _ _ exn) = throw exn
[all …]
/dports/lang/purescript/purescript-0.14.5/_cabal_deps/serialise-0.2.3.0/src/Codec/
H A DSerialise.hs29 , CBOR.Read.DeserialiseFailure(..)
35 , CBOR.Read.IDecode(..)
59 import qualified Codec.CBOR.Read as CBOR.Read
60 import qualified Codec.CBOR.Write as CBOR.Write
79 serialiseIncremental = CBOR.Write.toBuilder . encode
92 deserialiseIncremental = CBOR.Read.deserialiseIncremental decode
109 serialise = CBOR.Write.toLazyByteString . encode
123 supplyAllInput _bs (CBOR.Read.Done _ _ x) = return x
124 supplyAllInput bs (CBOR.Read.Partial k) =
128 supplyAllInput _ (CBOR.Read.Fail _ _ exn) = throw exn
[all …]
/dports/devel/p5-CBOR-XS/CBOR-XS-1.3/
H A DREADME2 CBOR::XS - Concise Binary Object Representation (CBOR, RFC7049)
5 use CBOR::XS;
12 $coder = CBOR::XS->new;
27 Representation (CBOR) and vice versa. CBOR is a fast binary
75 Creates a new CBOR::XS object that can be used to de/encode CBOR
365 CBOR -> PERL
405 PERL -> CBOR
438 These special values become CBOR true, CBOR false and CBOR undefined
669 Wrap CBOR data in CBOR:
778 CBOR and JSON
[all …]
/dports/devel/p5-CBOR-XS/CBOR-XS-1.3/t/
H A D52_object.t4 use CBOR::XS;
8 sub CBOR::XS::tocbor::TO_CBOR {
10 print CBOR::XS::tocbor:: eq ref $_[0] ? "" : "not ", "ok 4\n";
15 $obj = bless { k => 1 }, CBOR::XS::tocbor::;
24 sub CBOR::XS::freeze::FREEZE {
26 print $_[1] eq "CBOR" ? "" : "not ", "ok 9\n";
27 print CBOR::XS::freeze:: eq ref $_[0] ? "" : "not ", "ok 10\n";
32 sub CBOR::XS::freeze::THAW {
34 print CBOR::XS::freeze:: eq $_[0] ? "" : "not ", "ok 14\n";
35 print $_[1] eq "CBOR" ? "" : "not ", "ok 15\n";
[all …]
H A D54_sharing.t4 use CBOR::XS;
8 sub CBOR::XS::freeze::FREEZE { 77 }
9 sub CBOR::XS::freeze::THAW { \my $dummy }
11 $enc = CBOR::XS::encode_cbor_sharing [(bless [], CBOR::XS::freeze::) x 3];
14 $enc = CBOR::XS->new->allow_sharing->encode ([(bless [], CBOR::XS::freeze::) x 3]);
22 $enc = eval { CBOR::XS::decode_cbor pack "H*", "d81c81d81d00" };
27 $dec = CBOR::XS->new->allow_cycles->decode (pack "H*", "d81c81d81d00");
H A D55_utf8.t4 use CBOR::XS;
8 $dec = CBOR::XS->new->decode ("\x62\xc3\xbc");
11 $dec = eval { CBOR::XS->new->decode ("\x62\xc3\xc3"); 1 };
14 $dec = eval { CBOR::XS->new->decode ("\x61\xc3"); 1 };
17 $dec = eval { CBOR::XS->new->validate_utf8->decode ("\x62\xc3\xc3"); 1 };
20 $dec = eval { CBOR::XS->new->validate_utf8->decode ("\x61\xc3"); 1 };
23 $dec = CBOR::XS->new->decode ("\xa1\x62\xc3\xbc\xf6");
26 $dec = eval { CBOR::XS->new->decode ("\xa1\x62\xc3\xc3\xf6"); 1 };
29 $dec = eval { CBOR::XS->new->validate_utf8->decode ("\xa1\x62\xc3\xc3\xf6"); 1 };
H A D56_filter.t4 use CBOR::XS;
8 $dec = (decode_cbor encode_cbor CBOR::XS::tag 0, "2003-12-13T18:30:02Z")->epoch;
11 $dec = (decode_cbor encode_cbor CBOR::XS::tag 0, "2003-12-13T18:30:02.25Z")->epoch;
14 $dec = (decode_cbor encode_cbor CBOR::XS::tag 0, "2003-12-13T18:30:02+01:00")->epoch;
17 $dec = (decode_cbor encode_cbor CBOR::XS::tag 0, "2003-12-13T18:30:02.25+01:00")->epoch;
20 $dec = (decode_cbor encode_cbor CBOR::XS::tag 1, 123456789)->epoch;
23 $dec = (decode_cbor encode_cbor CBOR::XS::tag 1, 123456789.75)->epoch;
26 $dec = (decode_cbor encode_cbor decode_cbor encode_cbor CBOR::XS::tag 1, 123456789.75)->epoch;
/dports/www/p5-Dancer2/Dancer2-0.301004/t/classes/Dancer2-Core-Request/
H A Dserializers.t8 package App::CBOR; ## no critic
13 set serializer => 'CBOR';
22 subtest 'Testing with CBOR' => sub {
23 eval { require CBOR::XS; 1; }
24 or plan skip_all => 'CBOR::XS is needed for this test';
26 eval { require Dancer2::Serializer::CBOR; 1; }
27 or plan skip_all => 'Dancer2::Serializer::CBOR is needed for this test';
29 App::CBOR->setup;
30 my $app = Plack::Test->create( App::CBOR->to_app );
33 Content => CBOR::XS::encode_cbor('Foo'),
[all …]
/dports/security/nextcloud-twofactor_webauthn/twofactor_webauthn/vendor/spomky-labs/cbor-php/src/Tag/
H A DBase64UrlEncodingTag.php14 namespace CBOR\Tag;
16 use CBOR\ByteStringObject;
17 use CBOR\ByteStringWithChunkObject;
18 use CBOR\CBORObject;
19 use CBOR\TagObject as Base;
20 use CBOR\TextStringObject;
21 use CBOR\TextStringWithChunkObject;
22 use CBOR\Utils;
H A DBase16EncodingTag.php14 namespace CBOR\Tag;
16 use CBOR\ByteStringObject;
17 use CBOR\ByteStringWithChunkObject;
18 use CBOR\CBORObject;
19 use CBOR\TagObject as Base;
20 use CBOR\TextStringObject;
21 use CBOR\TextStringWithChunkObject;
H A DBase64EncodingTag.php14 namespace CBOR\Tag;
16 use CBOR\ByteStringObject;
17 use CBOR\ByteStringWithChunkObject;
18 use CBOR\CBORObject;
19 use CBOR\TagObject as Base;
20 use CBOR\TextStringObject;
21 use CBOR\TextStringWithChunkObject;
H A DTimestampTag.php14 namespace CBOR\Tag;
16 use CBOR\CBORObject;
17 use CBOR\OtherObject\DoublePrecisionFloatObject;
18 use CBOR\OtherObject\HalfPrecisionFloatObject;
19 use CBOR\OtherObject\SinglePrecisionFloatObject;
20 use CBOR\TagObject as Base;
21 use CBOR\UnsignedIntegerObject;
/dports/www/nextcloud/nextcloud/3rdparty/spomky-labs/cbor-php/src/Tag/
H A DBase64UrlEncodingTag.php14 namespace CBOR\Tag;
16 use CBOR\ByteStringObject;
17 use CBOR\ByteStringWithChunkObject;
18 use CBOR\CBORObject;
19 use CBOR\TagObject as Base;
20 use CBOR\TextStringObject;
21 use CBOR\TextStringWithChunkObject;
22 use CBOR\Utils;
H A DBase16EncodingTag.php14 namespace CBOR\Tag;
16 use CBOR\ByteStringObject;
17 use CBOR\ByteStringWithChunkObject;
18 use CBOR\CBORObject;
19 use CBOR\TagObject as Base;
20 use CBOR\TextStringObject;
21 use CBOR\TextStringWithChunkObject;
H A DBase64EncodingTag.php14 namespace CBOR\Tag;
16 use CBOR\ByteStringObject;
17 use CBOR\ByteStringWithChunkObject;
18 use CBOR\CBORObject;
19 use CBOR\TagObject as Base;
20 use CBOR\TextStringObject;
21 use CBOR\TextStringWithChunkObject;
H A DTimestampTag.php14 namespace CBOR\Tag;
16 use CBOR\CBORObject;
17 use CBOR\OtherObject\DoublePrecisionFloatObject;
18 use CBOR\OtherObject\HalfPrecisionFloatObject;
19 use CBOR\OtherObject\SinglePrecisionFloatObject;
20 use CBOR\TagObject as Base;
21 use CBOR\UnsignedIntegerObject;
/dports/devel/hs-spago/spago-0.20.3/_cabal_deps/cborg-0.2.5.0/
H A Dcborg.cabal33 for working with CBOR data.
64 Codec.CBOR
65 Codec.CBOR.Decoding
66 Codec.CBOR.Encoding
67 Codec.CBOR.FlatTerm
68 Codec.CBOR.Magic
69 Codec.CBOR.Pretty
70 Codec.CBOR.Read
71 Codec.CBOR.Write
72 Codec.CBOR.Term
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/device/fido/
H A Ddevice_response_converter.cc55 using CBOR = cbor::Value; typedef
81 it = decoded_map.find(CBOR(0x02)); in ReadCTAPMakeCredentialResponse()
90 it = decoded_map.find(CBOR(0x03)); in ReadCTAPMakeCredentialResponse()
100 it = decoded_map.find(CBOR(0x04)); in ReadCTAPMakeCredentialResponse()
115 it = decoded_map.find(CBOR(0x05)); in ReadCTAPMakeCredentialResponse()
144 it = response_map.find(CBOR(0x03)); in ReadCTAPGetAssertionResponse()
152 it = response_map.find(CBOR(0x01)); in ReadCTAPGetAssertionResponse()
161 it = response_map.find(CBOR(0x04)); in ReadCTAPGetAssertionResponse()
169 it = response_map.find(CBOR(0x05)); in ReadCTAPGetAssertionResponse()
184 it = response_map.find(CBOR(0x07)); in ReadCTAPGetAssertionResponse()
[all …]
/dports/lang/purescript/purescript-0.14.5/_cabal_deps/cborg-0.2.5.0/
H A Dcborg.cabal34 for working with CBOR data.
65 Codec.CBOR
66 Codec.CBOR.Decoding
67 Codec.CBOR.Encoding
68 Codec.CBOR.FlatTerm
69 Codec.CBOR.Magic
70 Codec.CBOR.Pretty
71 Codec.CBOR.Read
72 Codec.CBOR.Write
73 Codec.CBOR.Term
[all …]
/dports/sysutils/ldap-account-manager/ldap-account-manager-7.3/lib/3rdParty/composer/spomky-labs/cbor-php/src/Tag/
H A DBase16EncodingTag.php14 namespace CBOR\Tag;
16 use CBOR\ByteStringObject;
17 use CBOR\ByteStringWithChunkObject;
18 use CBOR\CBORObject;
19 use CBOR\TagObject as Base;
20 use CBOR\TextStringObject;
21 use CBOR\TextStringWithChunkObject;
H A DBase64UrlEncodingTag.php14 namespace CBOR\Tag;
17 use CBOR\ByteStringObject;
18 use CBOR\ByteStringWithChunkObject;
19 use CBOR\CBORObject;
20 use CBOR\TagObject as Base;
21 use CBOR\TextStringObject;
22 use CBOR\TextStringWithChunkObject;
H A DBase64EncodingTag.php14 namespace CBOR\Tag;
16 use CBOR\ByteStringObject;
17 use CBOR\ByteStringWithChunkObject;
18 use CBOR\CBORObject;
19 use CBOR\TagObject as Base;
20 use CBOR\TextStringObject;
21 use CBOR\TextStringWithChunkObject;
H A DTimestampTag.php14 namespace CBOR\Tag;
16 use CBOR\CBORObject;
17 use CBOR\OtherObject\DoublePrecisionFloatObject;
18 use CBOR\OtherObject\HalfPrecisionFloatObject;
19 use CBOR\OtherObject\SinglePrecisionFloatObject;
20 use CBOR\TagObject as Base;
21 use CBOR\UnsignedIntegerObject;
/dports/www/gitea/gitea-1.16.5/vendor/github.com/fxamacker/cbor/v2/
H A DREADME.md1 # CBOR Codec in Go
24 ## What is CBOR?
48 ## CBOR Security
69 ## CBOR Performance
132 ## CBOR API
161 ## CBOR Features
309 ### CBOR Tags (New in v2.1)
649 * CBOR Null
650 * CBOR Undefined
651 * CBOR floating-point NaN
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/device/fido/
H A Ddevice_response_converter.cc54 using CBOR = cbor::Value; typedef
80 it = decoded_map.find(CBOR(2)); in ReadCTAPMakeCredentialResponse()
89 it = decoded_map.find(CBOR(3)); in ReadCTAPMakeCredentialResponse()
125 it = response_map.find(CBOR(3)); in ReadCTAPGetAssertionResponse()
133 it = response_map.find(CBOR(1)); in ReadCTAPGetAssertionResponse()
142 it = response_map.find(CBOR(4)); in ReadCTAPGetAssertionResponse()
150 it = response_map.find(CBOR(5)); in ReadCTAPGetAssertionResponse()
226 it = response_map.find(CBOR(3)); in ReadCTAPGetInfoResponse()
237 it = response_map.find(CBOR(2)); in ReadCTAPGetInfoResponse()
258 it = response_map.find(CBOR(4)); in ReadCTAPGetInfoResponse()
[all …]

12345678910>>...31