canonical_json 1.1.2 copy "canonical_json: ^1.1.2" to clipboard
canonical_json: ^1.1.2 copied to clipboard

Encoder and decoder for a canonical JSON format, useful when cryptographically hashing or signing JSON objects.

example/main.dart

// Copyright 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

import 'package:canonical_json/canonical_json.dart';

void main() {
  // Encode a message
  final bytes = canonicalJson.encode({
    'from': 'alice',
    'message': 'Hi Bob',
  });

  // Decode message
  try {
    final msg = canonicalJson.decode(bytes) as Map<String, Object>;
    print('message is: ${msg['message']}');
  } on InvalidCanonicalJsonException {
    print('Message was not canonical JSON!');
  }
}
9
likes
130
pub points
82%
popularity

Publisher

verified publishergoogle.dev

Encoder and decoder for a canonical JSON format, useful when cryptographically hashing or signing JSON objects.

Homepage
Repository (GitHub)
View/report issues
Contributing

Topics

#json #crypto #security

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

typed_data, unorm_dart

More

Packages that depend on canonical_json