Socket
Socket
Sign inDemoInstall

github.com/minio/xxml

Package Overview
Dependencies
0
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    github.com/minio/xxml

Package xml implements a simple XML 1.0 parser that understands XML name spaces.


Version published

Readme

Source

xxml

NOTE: This package is a fork of 'encoding/xml' from https://github.com/golang/go.

Package xml implements a simple XML 1.0 parser that understands XML name spaces, along with extended support for control characters such as following

var controlCharactersMap = map[rune][]byte{
        '\x00': []byte("�"),
        '\x01': []byte(""),
        '\x02': []byte(""),
        '\x03': []byte(""),
        '\x04': []byte(""),
        '\x05': []byte(""),
        '\x06': []byte(""),
        '\x07': []byte(""),
}

XML 1.0 spec does not allow these control characters. However this package intends to support these characters to satisfy MinIO's needs for AWS S3 compatiblity.

FAQs

Last updated on 10 Aug 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc